forked from gajus/react-css-modules
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.3 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
{
"name": "react-css-modules",
"description": "Seamless mapping of class names to CSS modules inside of React components.",
"main": "./dist/",
"repository": {
"type": "git",
"url": "https://github.com/gajus/react-css-modules"
},
"keywords": [
"react-component",
"react",
"css",
"modules"
],
"version": "3.7.6",
"author": {
"name": "Gajus Kuizinas",
"email": "gajus@gajus.com",
"url": "http://gajus.com"
},
"license": "BSD-3-Clause",
"dependencies": {
"es6-map": "^0.1.3",
"hoist-non-react-statics": "^1.0.5",
"lodash": "^4.6.1",
"object-unfreeze": "^1.0.2"
},
"devDependencies": {
"chai": "^3.5.0",
"jsdom": "^8.1.0",
"pragmatist": "^3.0.21",
"react": "^15.0.0-rc.1",
"react-addons-shallow-compare": "^15.0.0-rc.1",
"react-addons-test-utils": "^15.0.0-rc.1",
"react-dom": "^15.0.0-rc.1"
},
"scripts": {
"pragmatist": "node ./node_modules/.bin/pragmatist --es5",
"lint": "npm run pragmatist lint",
"test": "npm run pragmatist test --type-annotations",
"build": "npm run pragmatist build",
"watch": "npm run pragmatist watch",
"watch-lint": "npm run pragmatist watch-lint",
"watch-test": "npm run pragmatist watch-test --type-annotations",
"watch-build": "npm run pragmatist watch-build"
}
}