-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.13 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.13 KB
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
{
"name": "react-tdd",
"version": "1.0.0",
"description": "Getting Started with TDD in React",
"main": "index.js",
"scripts": {
"test": "./node_modules/mocha/bin/mocha ./test/helpers/brower.js ./test/*.spec.js",
"dev:hot": "webpack-dev-server --hot --inline --progress --colors --watch --display-error-details --display-cached --content-base ./"
},
"engines": {
"node": "^4.0.0"
},
"keywords": [
"tdd",
"testing",
"react",
"javascript",
"test"
],
"author": "Ismael Cedano",
"license": "ISC",
"dependencies": {
"chai": "^3.5.0",
"enzyme": "^2.4.1",
"jsdom": "^9.4.2",
"mocha": "^3.0.2",
"react": "^15.3.0",
"react-addons-test-utils": "^15.3.0",
"react-dom": "^15.3.0",
"sinon": "^1.17.5"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-core": "^6.13.2",
"babel-loader": "^6.2.4",
"babel-preset-airbnb": "^2.0.0",
"babel-preset-es2015": "^6.13.2",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.11.6",
"md5": "^2.1.0",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1"
}
}