-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
66 lines (66 loc) · 1.73 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
{
"name": "es-css-modules",
"version": "1.2.4",
"description": "PostCSS plugin that combines CSS Modules and ES Imports",
"main": "index.js",
"jsnext:main": "src/index.js",
"scripts": {
"test": "ava --verbose --timeout 5s",
"build": "rollup -c rollup.config.js && babel index.js -o index.js"
},
"keywords": [
"postcss",
"modules",
"css-modules",
"css",
"minify",
"min",
"class",
"className"
],
"author": "",
"license": "ISC",
"dependencies": {
"css-modules-loader-core": "^1.0.0",
"get-es-imports-exports": "^1.0.4",
"is-keyword-js": "^1.0.3",
"lodash": "^4.16.6",
"postcss": "^5.2.5",
"postcss-remove-classes": "^1.0.2",
"string-hash": "^1.1.0"
},
"devDependencies": {
"ava": "^0.16.0",
"babel": "^6.5.2",
"babel-cli": "^6.8.0",
"babel-core": "^6.7.6",
"babel-eslint": "^6.0.4",
"babel-plugin-transform-async-to-generator": "^6.7.4",
"babel-plugin-transform-es2015-destructuring": "^6.6.5",
"babel-plugin-transform-es2015-modules-commonjs": "^6.7.7",
"babel-plugin-transform-es2015-parameters": "^6.7.0",
"babel-plugin-transform-es2015-shorthand-properties": "^6.5.0",
"babel-plugin-transform-es2015-spread": "^6.6.5",
"babel-plugin-transform-strict-mode": "^6.6.5",
"basscss-btn": "^1.1.1",
"basscss-btn-primary": "^1.1.0",
"eslint": "^2.9.0",
"eslint-config-airbnb-base": "^2.0.0",
"eslint-plugin-import": "^1.6.1",
"rollup": "^0.25.8",
"rollup-plugin-babel": "^2.4.0"
},
"ava": {
"files": [
"test/*.js"
],
"require": [
"babel-register"
],
"babel": "inherit"
},
"repository": {
"type": "git",
"url": "https://github.com/jacobp100/es-css-modules"
}
}