-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.01 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
{
"name": "todo-app-jquery-to-backbone",
"description": "Refactoring todo app.",
"version": "1.0.0",
"homepage": "https://github.com/coding-kata/todo-app-jquery-to-backbone/",
"repository": {
"type": "git",
"url": "https://github.com/coding-kata/todo-app-jquery-to-backbone.git"
},
"main": "index.js",
"scripts": {
"start": "http-server",
"build": "browserify src/app.js -t 6to5ify -o lib/bundle.js",
"watch": "watchify src/app.js -d -t 6to5ify -o lib/bundle.js",
"test": "mocha test/*.js"
},
"directories": {
"test": "test/"
},
"author": "azu",
"license": "MIT",
"bugs": {
"url": "https://github.com/coding-kata/todo-app-jquery-to-backbone/issues"
},
"devDependencies": {
"6to5ify": "^3.1.2",
"browserify": "^8.1.1",
"espower-loader": "^0.10.0",
"http-server": "^0.7.4",
"intelli-espower-loader": "^0.6.0",
"mocha": "^2.1.0",
"phantomjs": "^1.9.13",
"power-assert": "^0.10.1",
"testium": "^2.4.0",
"watchify": "^2.2.1"
}
}