-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.16 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.16 KB
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
{
"name": "bouken",
"version": "0.3.0c",
"description": "ASCII Roguelike",
"license": "MIT",
"scripts": {
"start": "concurrently -c --kill-others 'npm:watch-html' 'npm:watch-reason'",
"build": "parcel build src/index.html --public-url /",
"clean": "rimraf .cache lib dist .merlin src/*.js",
"watch-html": "parcel src/index.html",
"watch-reason": "bsb -make-world -w",
"bsb": "bsb -make-world",
"bsb-clean": "bsb -clean-world",
"test": "jest --testMatch='**/test/*test.bs.js' --watch",
"coverage": "jest --testMatch='**/test/*test.bs.js' --collectCoverageFrom='src/app/**' --coverage",
"ci": "yarn bsb && yarn coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"dependencies": {
"bs-fetch": "^0.6.2",
"bs-webapi": "^0.19.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"reason-react": "^0.9.1"
},
"devDependencies": {
"@glennsl/bs-jest": "^0.4.9",
"bs-platform": "^8.4.2",
"bsb-js": "^1.1.7",
"concurrently": "^3.6.1",
"parcel-bundler": "^1.12.4",
"rimraf": "^3.0.2"
},
"jest": {
"collectCoverageFrom": [
"**/app/*.{bs.js}"
]
}
}