-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 2.07 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
{
"name": "babel-plugin-css-modules-transform",
"version": "1.2.7",
"description": "Transform required css modules so one can use generated class names.",
"main": "build/index.js",
"scripts": {
"build": "node node_modules/.bin/babel src --ignore **/*.spec.js -d build",
"lint": "node node_modules/.bin/eslint src",
"test": "npm run lint && node node_modules/.bin/mocha --compilers js:babel-core/register 'test/**/*.spec.js'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/michalkvasnicak/babel-plugin-css-modules-transform.git"
},
"keywords": [
"babel",
"css-modules",
"babel-plugin",
"plugin"
],
"author": "Michal Kvasničák <[email protected]> (http://kvasnicak.info)",
"license": "MIT",
"bugs": {
"url": "https://github.com/michalkvasnicak/babel-plugin-css-modules-transform/issues"
},
"homepage": "https://github.com/michalkvasnicak/babel-plugin-css-modules-transform#readme",
"dependencies": {
"css-modules-require-hook": "^4.0.6",
"mkdirp": "^0.5.1"
},
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-core": "^6.22.1",
"babel-eslint": "^7.1.1",
"babel-plugin-transform-es2015-block-scoping": "^6.22.0",
"babel-plugin-transform-es2015-destructuring": "^6.22.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.22.0",
"babel-plugin-transform-es2015-parameters": "^6.22.0",
"babel-plugin-transform-es2015-spread": "^6.22.0",
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.22.0",
"babel-plugin-transform-strict-mode": "^6.22.0",
"babel-preset-es2015": "^6.22.0",
"chai": "^3.4.1",
"eslint": "^1.9.0",
"eslint-config-airbnb-lite": "^1.0.0",
"gulp-babel": "^6.1.2",
"gulp-util": "^3.0.7",
"mocha": "^2.3.4",
"postcss": "^5.x",
"postcss-modules-extract-imports": "^1.x",
"postcss-modules-local-by-default": "^1.x",
"postcss-modules-scope": "^1.x",
"postcss-modules-values": "^1.x",
"rimraf": "^2.5.4"
},
"engines": {
"node": ">=4.0.0"
}
}