-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.72 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.72 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
{
"name": "css-modules-stylus",
"version": "0.1.1",
"description": "Stylus preprocessor for css-modules-require-hook.",
"main": "lib/index.js",
"jsnext:main": "src/index.js",
"scripts": {
"prepublish": "npm run build",
"test": "cross-env NODE_ENV=test nyc --reporter=text --reporter=lcov ava",
"build": "gulp build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/9technology/css-modules-stylus.git"
},
"author": "9Technology <opensource@nine.com.au>",
"contributors": [
"Christopher Turner <turner296@gmail.com>"
],
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/9technology/css-modules-stylus/issues"
},
"dependencies": {
"stylus": "^0.54.5"
},
"devDependencies": {
"ava": "^0.18.2",
"babel-eslint": "^7.1.0",
"babel-plugin-istanbul": "^3.0.0",
"babel-plugin-transform-es2015-shorthand-properties": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.1.8",
"babel-register": "^6.9.0",
"coveralls": "^2.11.16",
"cross-env": "^3.1.3",
"del": "^2.2.1",
"eslint": "^3.10.2",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.7.1",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"nyc": "^10.1.2",
"proxyquire": "^1.7.10",
"run-sequence": "^1.2.2",
"sinon": "^1.17.4"
},
"ava": {
"require": [
"babel-register"
],
"babel": "inherit",
"files": [
"test/**/*.spec.js"
]
},
"nyc": {
"all": true,
"sourceMap": false,
"instrument": false
},
"peerDependencies": {
"css-modules-require-hook": "^4.0.6"
}
}