-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.63 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.63 KB
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
{
"name": "css-modules-compiler",
"version": "1.0.0",
"main": "src/index.js",
"bin": "./bin/css-modules-compiler.js",
"description": "An automation task to compile css-modules and remove it from the components",
"scripts": {
"test": "NODE_ENV=test mocha --compilers js:babel-register --reporter emoji-reporter ./test/**/*.spec.js",
"coverage": "NODE_ENV=test nyc npm test",
"coverage:html": "NODE_ENV=test nyc --reporter=lcov npm test",
"test:watch": "npm test -- --watch",
"lint": "eslint ./src ./test/**/*.spec.js",
"docs:clean": "node ./scripts/docs.js -a clean",
"docs:build": "node ./scripts/docs.js -a build",
"docs:watch": "node ./scripts/docs.js -a watch",
"docs:publish": "node ./scripts/docs.js -a publish",
"examples:basic": "node ./bin/css-modules-compiler compile ./examples/basic/src -t ./examples/basic/build",
"examples:advanced": "node ./bin/css-modules-compiler.js compile ./examples/advanced/src -t ./examples/advanced/build -b ba*.css -p postcss-import"
},
"authors": [
"Matteo Ronchi <matteo.ronchi@gmail.com>",
"Michele Bertoli"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/cef62/css-modules-compiler.git"
},
"bugs": {
"url": "https://github.com/cef62/css-modules-compiler/issues"
},
"homepage": "https://github.com/cef62/css-modules-compiler#readme",
"devDependencies": {
"babel-core": "6.10.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-rewire": "1.0.0-rc-4",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-preset-power-assert": "1.0.0",
"babel-register": "6.9.0",
"emoji-reporter": "0.3.0",
"eslint": "3.0.0",
"eslint-config-airbnb": "9.0.1",
"eslint-plugin-import": "1.10.0",
"eslint-plugin-jsx-a11y": "1.5.3",
"eslint-plugin-react": "5.2.2",
"ghooks": "1.3.2",
"gitbook-cli": "2.3.0",
"mocha": "2.5.3",
"nyc": "7.0.0",
"opt-cli": "1.5.1",
"postcss-import": "^8.1.2",
"power-assert": "1.4.1",
"rimraf": "2.5.3",
"shelljs": "0.7.0"
},
"dependencies": {
"babel": "6.5.2",
"babel-core": "6.10.4",
"babel-preset-es2015": "6.9.0",
"bluebird": "3.4.1",
"chalk": "1.1.3",
"debug": "2.2.0",
"del": "2.2.1",
"fs-extra": "0.30.0",
"fs-readdir-recursive": "^1.0.0",
"list-selectors": "2.0.0",
"node-emoji": "1.3.1",
"postcss": "^5.0.21",
"postcss-modules": "^0.5.0",
"shelljs": "0.7.0",
"yargs": "4.7.1"
},
"engines": {
"node": ">=6.0.0"
},
"config": {
"ghooks": {
"pre-push": "opt --in pre-push --exec \"npm run lint && npm run test\""
}
}
}