-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
44 lines (44 loc) · 1.19 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
{
"name": "joy-js",
"version": "0.1.0",
"description": "A JavaScript interpreter for the Joy programming language",
"repository": {
"type": "git",
"url": "https://github.com/jimf/joy-js"
},
"scripts": {
"build": "rimraf dist && mkdir dist && cp static/index.html dist && npm run build-js && npm run build-css",
"build-js": "browserify static/index.js | minify > dist/index.js",
"build-css": "uglifycss static/styles.css > dist/styles.css",
"deploy": "gh-pages -d dist",
"lint": "standard",
"pretest": "npm run lint",
"start": "budo ./static/index.js --dir=./static --live --open --host=0.0.0.0",
"test": "nyc tape test/*.js"
},
"nyc": {
"reporter": [
"lcov",
"text"
]
},
"keywords": [],
"author": "Jim Fitzpatrick",
"license": "MIT",
"bugs": {
"url": "https://github.com/jimf/joy-js/issues"
},
"homepage": "https://github.com/jimf/joy-js",
"dependencies": {},
"devDependencies": {
"babel-minify": "^0.4.3",
"browserify": "^16.2.2",
"budo": "^11.2.2",
"gh-pages": "^1.2.0",
"nyc": "^11.8.0",
"rimraf": "^2.6.2",
"standard": "^11.0.1",
"tape": "^4.9.0",
"uglifycss": "0.0.29"
}
}