-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
54 lines (54 loc) · 1.52 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
{
"name": "react-component-tree",
"version": "0.4.0",
"description": "Serialize and reproduce the state of an entire tree of React components",
"main": "dist/entry.js",
"repository": {
"type": "git",
"url": "https://github.com/skidding/react-component-tree.git"
},
"license": "MIT",
"dependencies": {
"lodash": "^3.6.0"
},
"devDependencies": {
"babel": "^5.8.23",
"babel-core": "^5.0.12",
"babel-eslint": "^4.1.5",
"babel-loader": "^5.0.0",
"chai": "^2.2.0",
"coveralls": "^2.11.2",
"eslint": "^1.9.0",
"eslint-plugin-react": "^3.8.0",
"istanbul": "^0.3.13",
"istanbul-instrumenter-loader": "^0.1.2",
"karma": "^0.13.9",
"karma-chai": "^0.1.0",
"karma-cli": "0.1.1",
"karma-coverage": "^0.2.7",
"karma-mocha": "^0.1.10",
"karma-mocha-reporter": "^1.0.2",
"karma-phantomjs-launcher": "^0.1.4",
"karma-sinon-chai": "^0.3.0",
"karma-webpack": "^1.7.0",
"mocha": "^2.2.4",
"react": "^15.1.0",
"react-addons-test-utils": "^15.1.0",
"react-dom": "^15.1.0",
"sinon": "^1.14.1",
"sinon-chai": "^2.7.0",
"webpack": "^1.12.0"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0-0",
"react-dom": "^0.14.0 || ^15.0.0-0"
},
"scripts": {
"pretest": "npm run lint",
"lint": "eslint .",
"test": "karma start --single-run",
"coveralls": "cat tests/coverage/*/lcov.info | node_modules/coveralls/bin/coveralls.js",
"compile": "babel -d dist/ src/",
"prepublish": "rm -rf dist && npm run compile"
}
}