-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
50 lines (50 loc) · 1.4 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
{
"name": "reducer-lab",
"version": "0.1.0",
"description": "Build a reducer to manage state",
"engines": {
"node": "6.x",
"npm": "3.x"
},
"main": "index.js",
"scripts": {
"debug": "node-debug --hidden node_modules _mocha --watch",
"debug-ide": "./bin/debug-ide",
"test": "mocha -R mocha-multi --reporter-options nyan=-,json=.results.json"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/learn-co-curriculum/redux-reducer.git"
},
"keywords": [
"javascript",
"flatiron",
"learn"
],
"author": "The Flatiron School",
"license": "SEE LICENSE IN LICENSE.md",
"bugs": {
"url": "https://github.com/learn-co-curriculum/introduction-to-react-assessment/issues"
},
"homepage": "https://github.com/learn-co-curriculum/introduction-to-react-assessment#readme",
"devDependencies": {
"babel": "^6.5.2",
"babel-core": "^6.18.0",
"babel-preset-es2015": "^6.13.2",
"babel-register": "^6.18.0",
"babel-cli": "^6.3.17",
"babel-plugin-syntax-object-rest-spread": "^6.3.13",
"babel-plugin-transform-es2015-spread": "^6.4.0",
"babel-plugin-transform-object-rest-spread": "^6.3.13",
"expect": "^1.20.2",
"jsdom": "^9.4.1",
"mocha": "^3.0.1",
"mocha-multi": "^0.9.1",
"node-inspector": "^0.12.8",
"sinon": "^1.17.6"
},
"dependencies": {
"react": "^15.3.0",
"react-dom": "^15.3.0"
}
}