forked from martintolkiehn/todoMVC
-
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.18 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.18 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": "todo-mvc",
"version": "0.0.0",
"description": "Test Kata 1",
"main": "index.js",
"scripts": {
"test": "mocha",
"test-support:start-app-server": "coffee ./test/appServer.coffee -n",
"test-support:start-webdriver": "webdriver-manager start",
"test:client": "protractor protractor.conf.js",
"test:client:phantomjs": "",
"test:client:chrome": "",
"test:client:firefox": ""
},
"repository": {
"type": "git",
"url": "git+https://github.com/martintolkiehn/todoMVC.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/martintolkiehn/todoMVC/issues"
},
"homepage": "https://github.com/martintolkiehn/todoMVC#readme",
"devDependencies": {
"chai": "^3.4.1",
"chai-as-promised": "^5.2.0",
"chai-immutable": "^1.5.3",
"coffee-react": "^4.1.0",
"coffee-script": "^1.10.0",
"express": "^4.13.3",
"jsdom": "^7.2.2",
"mocha": "^2.3.4",
"phantomjs": "^1.9.19",
"protractor": "^3.0.0",
"react-addons-test-utils": "^0.14.6"
},
"dependencies": {
"immutable": "^3.7.6",
"react": "^0.14.6",
"react-dom": "^0.14.6",
"react-redux": "^4.0.6",
"redux": "^3.0.5"
}
}