-
Notifications
You must be signed in to change notification settings - Fork 465
/
package.json
48 lines (48 loc) · 1.27 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
{
"name": "reactjs_koans",
"version": "1.0.0",
"description": "React.js Koans",
"main": "index.js",
"scripts": {
"compile": "babel exercises --out-dir src",
"setup": "npm install && ncp koans/ exercises/",
"start": "npm run compile && nodemon server.js",
"test": "npm run compile && mocha -b --compilers js:babel/register --require test/helpers.js test/**/*.js || echo",
"watch": "onchange exercises/*.jsx -- npm run test"
},
"repository": {
"type": "git",
"url": "https://github.com/arkency/reactjs_koans.git"
},
"keywords": [
"react.js",
"kata",
"koans",
"tests"
],
"author": "Arkency",
"license": "MIT",
"bugs": {
"url": "https://github.com/arkency/reactjs_koans/issues"
},
"homepage": "https://github.com/arkency/reactjs_koans",
"dependencies": {
"babel": "^5.6.14",
"babel-core": "^5.6.15",
"babel-loader": "^5.3.1",
"express": "^4.12.4",
"jsdom": "^6.5.1",
"lodash": "^3.8.0",
"mocha": "^2.2.4",
"ncp": "^2.0.0",
"nodemon": "^1.3.7",
"onchange": "^1.1.0",
"react": "^0.13.3",
"react-hot-loader": "^1.2.3",
"react-tools": "^0.13.3",
"sinon": "^1.15.4",
"webpack": "^1.9.10",
"webpack-dev-server": "^1.9.0",
"node-libs-browser": ">=0.4.0"
}
}