-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
33 lines (33 loc) · 889 Bytes
/
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
{
"name": "@aoneill01/wasm-gamebuino",
"version": "0.8.0",
"description": "Gamebuino emulator",
"type": "module",
"main": "index.js",
"module": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"build": "wasm-pack build --target web",
"start": "npm run build && http-server",
"test": "echo \"Error: no test specified\" && exit 1"
},
"files": [
"*.js",
"pkg/**"
],
"repository": {
"type": "git",
"url": "git+https://github.com/aoneill01/wasm-gamebuino.git"
},
"author": "Andy O'Neill <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/aoneill01/wasm-gamebuino/issues"
},
"homepage": "https://github.com/aoneill01/wasm-gamebuino#readme",
"devDependencies": {
"http-server": "^0.12.3"
}
}