-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
39 lines (39 loc) · 1.21 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
{
"name": "reeborg",
"version": "1.0.0",
"private": true,
"description": "Reeborg's World engine",
"scripts": {
"test": "tape tests/unit_tests/**/*.js | faucet | time /t",
"tests": "tape tests/unit_tests/**/*.js | faucet | time /t",
"test-raw": "tape tests/unit_tests/**/*.js",
"test-spec": "tape tests/unit_tests/**/*.js | tap-spec",
"test-dot": "tape tests/unit_tests/**/*.js | tap-dot",
"build": "tape tests/unit_tests/**/*.js | faucet && browserify ./src/js/index.js -o ./build/reeborg.js | time /t",
"only-build": "browserify ./src/js/index.js -o ./build/reeborg.js",
"jsdoc": "jsdoc -c dev_tools/jsdoc_conf.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aroberge/reeborg.git"
},
"author": "André Roberge",
"license": "CC-BY-4.0",
"bugs": {
"url": "https://github.com/aroberge/reeborg/issues"
},
"homepage": "https://github.com/aroberge/reeborg#readme",
"devDependencies": {
"faucet": "^0.0.4",
"ink-docstrap": "^0.5.4",
"jsdoc": "^4.0.3",
"madge": "^5.0.1",
"mock-require": "^1.2.1",
"qunit": "^2.21.0",
"silencer": "0.0.2",
"tape": "^4.4.0"
},
"dependencies": {
"browserify": "^17.0.0"
}
}