-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.72 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "thermite",
"version": "0.0.8",
"description": "JavaScript live code reloading utility for Node and browsers",
"main": "thermite.js",
"repository": {
"type": "git",
"url": "https://github.com/omphalos/thermite"
},
"keywords": [
"JavaScript",
"hot-swap",
"hot-load",
"hot-reload",
"live-reload",
"live-edit",
"instrumentation",
"ast",
"abstract-syntax-tree",
"swap",
"swapping",
"hot-swapping",
"livereload",
"reload",
"live"
],
"author": "omphalos",
"license": "MIT",
"bugs": {
"url": "https://github.com/omphalos/thermite/issues"
},
"homepage": "https://github.com/omphalos/thermite",
"dependencies": {
"falafel": "1.2.0",
"googlediff": "0.1.0",
"survivor": "^0.0.3"
},
"devDependencies": {
"browserify": "13.1.1",
"bumpt": "0.0.4",
"coveralls": "2.11.4",
"istanbul": "0.3.19",
"minilint": "0.0.12",
"mocha": "3.1.2",
"nodemon": "1.4.1",
"uglifyjs": "2.4.10"
},
"scripts": {
"test": "npm run lint && npm run mocha && npm run cover-and-check",
"mocha": "mocha ./tests.js",
"watch": "nodemon -x 'mocha ./tests.js'",
"check-coverage": "istanbul check-coverage coverage/coverage.json",
"cover-and-check": "npm run cover && npm run check-coverage",
"cover": "istanbul cover _mocha -- ./tests.js",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"lint": "minilint",
"bundle": "browserify thermite.js -s thermite > bundle.js",
"minify": "cat bundle.js | uglifyjs > thermite.min.js",
"count": "gzip -c thermite.min.js | wc -c",
"build": "npm run bundle; npm run minify; npm run count; rm bundle.js",
"release": "npm run build; npm run test; bumpt"
}
}