-
-
Notifications
You must be signed in to change notification settings - Fork 214
/
package.json
55 lines (55 loc) · 1.59 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
{
"name": "react-css-modules",
"description": "Seamless mapping of class names to CSS modules inside of React components.",
"main": "./dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/gajus/react-css-modules"
},
"keywords": [
"react-component",
"react",
"css",
"modules"
],
"version": "4.3.0",
"author": {
"name": "Gajus Kuizinas",
"email": "[email protected]",
"url": "http://gajus.com"
},
"license": "BSD-3-Clause",
"dependencies": {
"hoist-non-react-statics": "^2.5.5",
"lodash": "^4.16.6",
"object-unfreeze": "^1.1.0"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-lodash": "^3.2.9",
"babel-plugin-transform-proto-to-assign": "^6.9.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"babel-register": "^6.18.0",
"chai": "^4.0.0-canary.1",
"chai-spies": "^0.7.1",
"eslint": "^3.10.0",
"eslint-config-canonical": "^5.5.0",
"husky": "^0.11.9",
"jsdom": "^9.8.3",
"mocha": "^3.1.2",
"react": "^15.4.0-rc.4",
"react-addons-shallow-compare": "^15.4.0-rc.4",
"react-addons-test-utils": "^15.4.0-rc.4",
"react-dom": "^15.4.0-rc.4",
"semantic-release": "^6.3.2"
},
"scripts": {
"lint": "eslint ./src ./tests",
"test": "NODE_ENV=development mocha --compilers js:babel-register ./tests/**/*.js && npm run lint && npm run build",
"build": "NODE_ENV=production babel ./src --out-dir ./dist",
"precommit": "npm run test"
}
}