forked from zpratt/react-tdd-guide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.07 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
{
"name": "react-tdd-guide",
"version": "1.0.0",
"description": "A guide on how to TDD React components",
"main": "index.js",
"scripts": {
"basics": "mocha */test",
"lint": "eslint */lib/*.jsx */test/*.spec.js",
"test": "npm run lint && npm run basics"
},
"repository": {
"type": "git",
"url": "https://github.com/zpratt/react-tdd-guide.git"
},
"keywords": [
"react",
"tdd",
"guide"
],
"author": "zach pratt <zach@attackofzach.com> (http://attackofzach.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/zpratt/react-tdd-guide/issues"
},
"homepage": "https://github.com/zpratt/react-tdd-guide",
"devDependencies": {
"babel-core": "^6.3.26",
"babel-eslint": "^4.1.6",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-2": "^6.3.13",
"chai": "^2.2.0",
"eslint": "^1.10.3",
"eslint-plugin-react": "^3.13.1",
"mocha": "^2.3.4",
"react-addons-test-utils": "^0.14.3",
"sinon": "^1.14.1"
},
"dependencies": {
"react": "^0.14.3"
}
}