This repository has been archived by the owner on Jan 9, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 1.94 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
{
"name": "kss-loader",
"version": "0.4.2",
"description": "Webpack loader for kss-node",
"author": {
"name": "Rafał Wolak",
"email": "r.wolak@design4.pro",
"url": "https://www.design4.pro"
},
"main": "index.js",
"files": [
"lib",
"index.js",
"LICENSE.md",
"README.md",
"schema.js"
],
"scripts": {
"release": "release-me --release-count=0",
"report-coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"test": "nyc --reporter=html --reporter=text mocha --timeout 20000 --reporter spec $(find . -name '*test.js' ! -ipath '*node_modules*')",
"test:check-coverage": "nyc check-coverage --statements 70 --branches 40 --functions 85 --lines 70",
"test:debug": "DEBUG=mocha npm t",
"test:watch": "npm t -- --watch"
},
"dependencies": {
"findup": "^0.1.5",
"kss": "^3.0.0 || ^3.0.0-beta.18",
"loader-utils": "^1.1.0",
"schema-utils": "^0.4.0",
"winston": "^2.3.1"
},
"devDependencies": {
"add": "^2.0.6",
"chai": "^4.0.2",
"codecov": "^3.0.0",
"commitizen": "^2.9.6",
"cross-env": "^5.0.0",
"cz-release-me": "^1.2.0",
"debug": "^3.1.0",
"git-dummy-commit": "^1.3.0",
"istanbul": "^0.4.5",
"jscs": "^3.0.7",
"jshint": "^2.9.4",
"mocha": "^4.0.0",
"mock-git": "1.0.3",
"node-sass": "^4.5.3",
"nyc": "^11.0.2",
"raw-loader": "^1.0.0-beta.0",
"release-me": "^1.3.1",
"rimraf": "^2.6.1",
"sass-loader": "^6.0.6",
"webpack": "^3.1.0",
"webpack-merge": "^4.1.0"
},
"config": {
"commitizen": {
"path": "node_modules/cz-release-me"
}
},
"repository": {
"type": "git",
"url": "https://github.com/design4pro/kss-loader.git"
},
"bugs": {
"url": "https://github.com/design4pro/kss-loader/issues/"
},
"homepage": "https://github.com/design4pro/kss-loader#readme",
"license": "MIT",
"keywords": [
"kss",
"kss-node",
"webpack",
"loader"
]
}