-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 818 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 818 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "pure",
"scripts": {
"start": "bsb -make-world -backend bytecode -w",
"start:native": "bsb -backend native -w",
"start:js": "bsb -make-world -backend js -w",
"run-app": "bsb -make-world -backend bytecode; ./lib/bs/bytecode/mainmacos.byte",
"build:js": "bsb -make-world -backend js",
"test:js": "jest",
"build:bytecode": "bsb -make-world -backend bytecode",
"build:native": "bsb -make-world -backend native",
"clean": "bsb -clean-world",
"bundle": "parcel ./pure-dom/index.html"
},
"dependencies": {
"bs-webapi": "git+https://github.com/lpalmes/bs-webapi-incubator#patch-1",
"bsb-native": "^4.0.6"
},
"devDependencies": {
"@glennsl/bs-jest": "git+https://github.com/lpalmes/bs-jest",
"jest": "^23.5.0",
"parcel-bundler": "^1.10.2"
}
}