-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.44 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.44 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
{
"name": "rollup-plugin-stylus-css-modules",
"description": "A Rollup.js plugin to compile Stylus and inject CSS Modules",
"version": "1.5.0",
"author": "Masaki Tojo",
"bugs": {
"url": "https://github.com/mtojo/rollup-plugin-stylus-css-modules/issues"
},
"dependencies": {
"babel-runtime": "~6.23.0",
"css-modules-loader-core": "~1.1.0",
"rollup-pluginutils": "~2.0.1",
"stylus": "~0.54.5"
},
"devDependencies": {
"babel-plugin-transform-async-to-generator": "~6.24.0",
"babel-plugin-transform-es2015-parameters": "~6.24.1",
"babel-plugin-transform-runtime": "~6.23.0",
"babel-preset-es2015-rollup": "~3.0.0",
"mocha": "~3.4.1",
"rollup": "~0.45.2",
"rollup-plugin-babel": "~2.7.1"
},
"directories": {
"test": "test/"
},
"engines": {
"node": ">=6.0.0"
},
"files": [
"dist/"
],
"homepage": "https://github.com/mtojo/rollup-plugin-stylus-css-modules",
"jsnext:main": "dist/rollup-plugin-stylus-css-modules.es.js",
"keywords": [
"css",
"css-modules",
"rollup-plugin"
],
"license": "MIT",
"main": "dist/rollup-plugin-stylus-css-modules.cjs.js",
"peerDependencies": {
"rollup": ">=0.34.1 <1"
},
"repository": {
"type": "git",
"url": "https://github.com/mtojo/rollup-plugin-stylus-css-modules.git"
},
"scripts": {
"build": "./script/build",
"prepublish": "npm run build",
"pretest": "npm run build",
"test": "mocha"
}
}