-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 1.93 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
71
{
"name": "pure-ui",
"version": "0.0.0",
"description": "",
"author": {
"name": "Nik Graf",
"email": "[email protected]",
"url": "https://github.com/nikgraf"
},
"repository": {
"type": "git",
"url": "http://github.com/pure-ui/react-pure-ui.git"
},
"main": "lib/index.js",
"keywords": [
"react"
],
"peerDependencies": {
"react": ">=0.14.0",
"react-dom": ">=0.14.0"
},
"scripts": {
"build": "BABEL_ENV=production babel --out-dir='lib' --ignore='__tests__/*' src",
"prepublish": "npm run build",
"test": "mocha test --recursive --require ./test/testHelper.js --compilers js:babel/register",
"test:watch": "npm run test -- --watch",
"lint": "npm run lint:eslint && npm run lint:jscs",
"lint:eslint": "eslint ./",
"lint:jscs": "jscs ./"
},
"devDependencies": {
"babel": "^5.8.29",
"babel-core": "^5.8.33",
"babel-eslint": "^4.1.5",
"babel-jest": "^5.3.0",
"babel-loader": "^5.3.3",
"babel-plugin-react-transform": "^1.1.1",
"chai": "^3.4.1",
"enzyme": "^1.0.1",
"eslint": "^1.10.2",
"eslint-config-airbnb": "^1.0.2",
"eslint-plugin-react": "^3.10.0",
"jest-cli": "^0.8.0",
"jscs": "^2.6.0",
"mocha": "^2.3.4",
"react-transform-catch-errors": "^1.0.0",
"react-transform-hmr": "^1.0.1",
"redbox-react": "^1.2.0",
"sinon": "^1.17.2",
"sinon-chai": "^2.8.0",
"webpack": "^1.12.9",
"webpack-dev-middleware": "^1.4.0",
"webpack-dev-server": "^1.14.0",
"webpack-hot-middleware": "^2.5.0"
},
"license": "MIT",
"dependencies": {
"belle": "^2.0.2",
"eslint": "^1.10.3",
"eslint-config-airbnb": "^2.0.0",
"eslint-plugin-react": "^3.11.3",
"faker": "^3.0.1",
"immutable": "^3.7.5",
"lodash": "^3.10.1",
"react": "^0.14.3",
"react-addons-create-fragment": "^0.14.3",
"react-dom": "^0.14.3",
"react-shallow-testutils": "^0.6.1",
"recompose": "^0.11.2"
}
}