-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
55 lines (55 loc) · 1.43 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
{
"name": "legit-tests",
"version": "1.1.2",
"description": "a chainable testing library for React",
"main": "legit-tests.js",
"scripts": {
"compile": "babel src --out-dir .",
"prepublish": "babel src --out-dir .",
"lint": "eslint ./src/ ./tests/ --ext .jsx,.js --global require,exports:true",
"mocha": "mocha --opts ./mocha.opts",
"test": "npm run mocha; npm run lint"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/legitcode/tests.git"
},
"keywords": [
"react-component",
"react",
"tests",
"react-test",
"react-utils"
],
"author": "Zach Silveira",
"license": "ISC",
"bugs": {
"url": "https://github.com/legitcode/tests/issues"
},
"homepage": "https://github.com/legitcode/tests#readme",
"devDependencies": {
"alt": "^0.17.4",
"babel-core": "^5.8.25",
"babel-eslint": "^4.1.3",
"babel-loader": "^5.3.2",
"babel-runtime": "^5.8.25",
"chai": "^3.3.0",
"eslint": "^1.6.0",
"eslint-plugin-react": "^3.5.1",
"expect": "^1.12.0",
"mocha": "^2.3.3",
"mocha-babel": "^3.0.0",
"react-hot-loader": "^1.3.0",
"sinon": "^1.17.1",
"webpack": "^1.12.2"
},
"dependencies": {
"babel": "^5.8.29",
"harmony-reflect": "^1.4.2",
"jsdom": "^6.5.1",
"lodash": "^3.10.1",
"react": ">=0.14.0 || >15.0.0",
"react-addons-test-utils": ">=0.14.0 || >=15.0.0",
"react-dom": ">=0.14.0 || >=15.0.0"
}
}