-
Notifications
You must be signed in to change notification settings - Fork 68
/
package.json
70 lines (70 loc) · 1.8 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
67
68
69
70
{
"name": "react-css-themr",
"description": "React CSS Themr",
"homepage": "https://github.com/javivelasco/react-css-themr#readme",
"version": "2.1.2",
"main": "./lib",
"author": {
"email": "[email protected]",
"name": "Javi Velasco",
"url": "http://javivelasco.com/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/javivelasco/react-css-themr.git"
},
"bugs": {
"url": "https://github.com/javivelasco/react-css-themr/issues"
},
"keywords": [
"css-modules",
"customization",
"react",
"react-css-themr",
"theming"
],
"dependencies": {
"hoist-non-react-statics": "^1.2.0",
"invariant": "^2.2.1"
},
"devDependencies": {
"@types/react": "^15.0.24",
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^3.19.0",
"eslint-config-rackt": "^1.1.1",
"eslint-plugin-babel": "^4.1.1",
"eslint-plugin-react": "^7.0.0",
"expect": "^1.18.0",
"fbjs": "^0.8.12",
"jsdom": "^9.8.3",
"mocha": "^3.3.0",
"prop-types": "^15.5.9",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"rimraf": "^2.6.1",
"sinon": "^1.17.6"
},
"files": [
"index.d.ts",
"lib",
"src"
],
"scripts": {
"build": "babel src --out-dir lib",
"lint": "eslint src test",
"prepublish": "rimraf lib && npm run build",
"test": "mocha --compilers js:babel-core/register --recursive --reporter spec --require ./test/setup.js",
"test:watch": "npm test -- --watch"
},
"license": "MIT",
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0-0"
},
"typings": "./index.d.ts"
}