forked from bkeepers/monologue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 978 Bytes
/
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": "monologue",
"version": "1.0.0",
"description": "coding kata @ monologue",
"main": "index.js",
"scripts": {
"start": "rackup --port 9295",
"build": "mkdir -p public/js/build/ && browserify public/js/app.js -o public/js/build/app.js",
"watch": "mkdir -p public/js/build/ && watchify public/js/app.js -o public/js/build/app.js",
"test": "mocha test/"
},
"repository": {
"type": "git",
"url": "https://github.com/coding-kata/monologue"
},
"keywords": [
"ruby",
"test",
"e2e"
],
"author": "azu",
"license": "MIT",
"bugs": {
"url": "https://github.com/coding-kata/monologue/issues"
},
"homepage": "https://github.com/coding-kata/monologue",
"devDependencies": {
"browserify": "^8.1.1",
"espower-loader": "^0.10.0",
"intelli-espower-loader": "^0.6.0",
"mocha": "^2.1.0",
"phantomjs": "^1.9.13",
"power-assert": "^0.10.1",
"testium": "^2.3.0",
"watchify": "^2.2.1"
}
}