-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
59 lines (59 loc) · 2.04 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
{
"name" : "react-socket",
"description" : "A neat way of handling views on other components",
"homepage" : "https://github.com/coma/react-socket",
"repository" : {
"type": "git",
"url" : "git://github.com/coma/react-socket.git"
},
"bugs" : {
"url" : "https://github.com/coma/react-socket/issues",
"email": "[email protected]"
},
"author" : {
"name" : "Eduardo García Sanz",
"email": "[email protected]"
},
"main" : "lib",
"version" : "1.0.0-beta.0",
"license" : "MIT",
"private" : false,
"keywords" : [
"react",
"socket.io",
"react-component"
],
"peerDependencies": {
"react": "^15.3.1"
},
"dependencies" : {
"socket.io-client": "^1.4.8"
},
"devDependencies" : {
"babel-cli" : "^6.7.5",
"babel-core" : "^6.7.6",
"babel-eslint" : "^6.0.3",
"babel-preset-es2015" : "^6.6.0",
"babel-preset-react" : "^6.5.0",
"babel-preset-stage-2" : "^6.5.0",
"eslint" : "^3.4.0",
"enzyme" : "^2.2.0",
"faucet" : "0.0.1",
"glob" : "^7.0.6",
"nyc" : "^8.1.0",
"react" : "^15.3.1",
"react-addons-test-utils": "^15.0.1",
"sinon" : "^1.17.4",
"tape" : "^4.5.1",
"webpack" : "2.1.0-beta.20"
},
"scripts" : {
"lint" : "eslint src",
"test" : "NODE_ENV=test babel-node test",
"cover" : "nyc --reporter=lcov --reporter=text npm test",
"clean" : "rm -rf lib/*.*",
"build" : "npm run clean && babel src -d lib",
"dist" : "webpack --optimize-minimize lib/dist.js dist.js",
"prepublish": "npm run build && npm run dist"
}
}