forked from gajus/babel-plugin-react-css-modules
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 2.13 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
{
"author": {
"email": "[email protected]",
"name": "Gajus Kuizinas",
"url": "http://gajus.com"
},
"dependencies": {
"ajv": "^5.0.0",
"ajv-keywords": "^2.1.0",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-types": "^6.19.0",
"generic-names": "^1.0.2",
"postcss": "^6.0.13",
"postcss-modules": "^0.6.2",
"postcss-modules-extract-imports": "^1.0.1",
"postcss-modules-local-by-default": "^1.1.1",
"postcss-modules-parser": "^1.1.0",
"postcss-modules-scope": "^1.0.2",
"postcss-modules-values": "^1.2.2"
},
"description": "Transforms styleName to className using compile time CSS module resolution.",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-helper-plugin-test-runner": "^6.18.0",
"babel-plugin-transform-es2015-destructuring": "^6.19.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.18.0",
"babel-plugin-transform-es2015-parameters": "^6.18.0",
"babel-plugin-transform-flow-strip-types": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"eslint": "^3.11.1",
"eslint-config-canonical": "^6.0.0",
"flow-bin": "^0.48.0",
"husky": "^0.12.0",
"mocha": "^3.2.0",
"postcss-less": "^0.15.0",
"postcss-nested": "^1.0.1",
"postcss-scss": "^0.4.0",
"semantic-release": "^6.3.5"
},
"engines": {
"node": ">4.0.0"
},
"keywords": [
"babel-plugin",
"css-modules"
],
"license": "BSD-3-Clause",
"main": "dist/index.js",
"name": "babel-plugin-react-css-modules",
"repository": {
"type": "git",
"url": "https://github.com/gajus/babel-plugin-react-css-modules"
},
"scripts": {
"build-helper": "mkdir -p ./dist/browser && NODE_ENV=production babel ./src/getClassName.js --out-file ./dist/browser/getClassName.js --source-maps --no-babelrc --plugins transform-es2015-modules-commonjs,transform-flow-strip-types --presets es2015",
"build": "rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --source-maps --copy-files && npm run build-helper",
"lint": "eslint ./src && flow",
"precommit": " ",
"test": " NODE_ENV=test mocha --compilers js:babel-register"
},
"version": "1.0.0"
}