forked from arkency/reactjs_koans
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.2 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.2 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
{
"name": "reactjs_koans",
"version": "0.0.1",
"description": "React.js Koans",
"main": "index.js",
"scripts": {
"setup": "scripts/setup.sh",
"start": "./node_modules/nodemon/bin/nodemon.js server.js",
"test-es6": "jsx -x jsx --es6module exercises/es6 src/es6 >/dev/null && mocha -b --compilers js:mocha-traceur -r test/es6/helpers.js test/es6/**/*.js ; true",
"watch": "onchange exercises/es6/*.jsx -- npm run test-es6"
},
"repository": {
"type": "git",
"url": "https://github.com/arkency/reactjs_koans.git"
},
"keywords": [
"react.js",
"kata",
"tests"
],
"author": "Arkency",
"license": "MIT",
"bugs": {
"url": "https://github.com/arkency/reactjs_koans/issues"
},
"homepage": "https://github.com/arkency/reactjs_koans",
"devDependencies": {
"babel-core": "^5.5.1",
"babel-loader": "^5.1.3",
"express": "^4.12.4",
"jsdom": "^3.1.2",
"lodash": "^3.8.0",
"mocha": "^2.2.4",
"mocha-traceur": "^2.1.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"
}
}