-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
121 lines (121 loc) · 3.12 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "quark-loader",
"version": "0.0.0",
"description": "Loader for webpack to process CSS files to minimize and compress as much as possible.",
"main": "dist/index.js",
"scripts": {
"commit": "git-cz",
"prebuild": "rimraf dist .nyc_output coverage",
"debug": "sudo node-nightly --inspect-brk ./node_modules/webpack/bin/webpack.js",
"build": "npm-run-all --parallel build:*",
"build:main": "babel --copy-files --out-dir dist src",
"dev": "webpack --config webpack.dev.js",
"lint": "eslint src",
"test": "cross-env NODE_ENV=test nyc mocha",
"report-coverage": "cat ./coverage/lcov.info | codecov",
"watch:test": "mocha --watch",
"validate": "npm-run-all --parallel test build",
"release": "semantic-release && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mohsenshafiei/quark-loader.git"
},
"keywords": [
"quark-loader",
"webpack",
"webpack-loader",
"css-minimizer",
"sass-minimizer",
"less-minimizer",
"css-modules",
"css-loader",
"sass-loader",
"less-loader"
],
"author": "Mohsen Shafiei Tafreshi <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mohsenshafiei/quark-loader/issues"
},
"homepage": "https://github.com/mohsenshafiei/quark-loader#readme",
"files": [
"dist"
],
"devDependencies": {
"@babel/cli": "7.4.4",
"@babel/core": "7.4.5",
"@babel/preset-env": "7.4.5",
"@babel/register": "7.4.4",
"babel-loader": "8.0.6",
"babel-plugin-istanbul": "5.1.4",
"chai": "4.2.0",
"codecov": "3.6.5",
"commitizen": "3.1.1",
"cross-env": "5.2.0",
"css-loader": "2.1.1",
"cz-conventional-changelog": "2.1.0",
"eslint": "5.16.0",
"eslint-config-airbnb": "17.1.0",
"eslint-config-mocha": "0.0.0",
"eslint-config-standard": "12.0.0",
"eslint-plugin-import": "2.17.2",
"eslint-plugin-jsx-a11y": "6.2.1",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "4.1.1",
"eslint-plugin-react": "7.13.0",
"eslint-plugin-standard": "4.0.0",
"ghooks": "2.0.4",
"mocha": "6.1.4",
"node-sass": "4.12.0",
"npm-run-all": "4.1.5",
"nyc": "14.1.1",
"rimraf": "2.6.3",
"sass-loader": "7.1.0",
"semantic-release": "^15.13.12",
"validate-commit-msg": "2.14.0",
"webpack": "4.32.0",
"webpack-cli": "3.3.2"
},
"nyc": {
"check-coverage": true,
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100,
"all": true,
"instrument": false,
"sourceMap": false,
"require": [
"@babel/register"
],
"include": [
"test/**/*.js"
],
"exclude": [
"**/*.test.js"
],
"reporter": [
"text",
"lcov"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
},
"ghooks": {
"pre-commit": "npm run validate",
"commit-msg": "validate-commit-msg"
}
},
"dependencies": {
"hashmap": "2.3.0",
"loader-utils": "1.2.3",
"postcss": "^7.0.16",
"schema-utils": "1.0.0"
},
"publishConfig": {
"access": "public"
}
}