forked from yahoo/jsx-test
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 954 Bytes
/
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
{
"name": "jsx-test",
"version": "0.8.0",
"description": "An easy way to test your React Components (`.jsx` files).",
"main": "index.js",
"scripts": {
"cover": "COVERAGE=true jenkins-mocha example/**/*.test.js test/**/*.test.js",
"test": "jenkins-mocha --no-coverage example/**/*.test.js test/**/*.test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/yahoo/jsx-test.git"
},
"keywords": [
"test",
"reactjs",
"jsx"
],
"author": "Marcelo Eden",
"license": "MIT",
"bugs": {
"url": "https://github.com/yahoo/jsx-test/issues"
},
"homepage": "https://github.com/yahoo/jsx-test",
"devDependencies": {
"babel": "^5.0",
"istanbul": "^0.3.15",
"jenkins-mocha": "^2.2.0",
"react": "^0.14.0"
},
"dependencies": {
"node-jsdom": "^3.1",
"react-addons-test-utils": "^0.14.1",
"react-dom": "^0.14.1"
},
"peerDependencies": {
"react": "^0.14.0"
}
}