-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
48 lines (48 loc) · 1.37 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
{
"name": "moonchild",
"version": "0.1.0",
"description": "Moonchild brings source code to life",
"author": "Patrick Dubroy <[email protected]> (http://dubroy.com)",
"license": "MIT",
"dependencies": {
"es6-symbol": "2.0.1",
"esprima": "~1.1.1",
"estraverse": "~1.5.0",
"underscore": "*"
},
"devDependencies": {
"beefy": "^2.1.0",
"browserify": "^3.38.0",
"eslint": "^0.18.0",
"node-static": "^0.7.4",
"tap": "~0.4.8",
"tap-spec": "^2.2.2",
"watchify": "~0.6.2"
},
"browserify": {
"opts": "main.js -s Moonchild -o dist/moonchild-bundle.js"
},
"scripts": {
"build": "browserify $npm_package_browserify_opts",
"lint": "eslint lib test $npm_config_package_main",
"prepublish": "npm run build && npm run test && npm run lint",
"serve": "http-server -o",
"start": "node server.js",
"test": "tap test/*.js",
"watch": "watchify $npm_package_browserify_opts",
"whizzy-demo": "open examples/whizzy.html; beefy lib/whizzy.js -- -s whizzy",
"whizzy-tests": "open test/test-whizzy.html; beefy test/test-whizzy.js"
},
"main": "main.js",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/pdubroy/moonchild"
},
"bugs": {
"url": "https://github.com/pdubroy/moonchild/issues"
},
"homepage": "https://github.com/pdubroy/moonchild"
}