-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
48 lines (48 loc) · 1.58 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
{
"name": "nanovg-js",
"version": "1.0.0",
"description": "JavaScript bindings for NanoVG using Emscripten and TypeScript",
"main": "nanovg.js",
"types": "nanovg.ts",
"scripts": {
"build": "make build-bind-nanovg && npm run build-nanovg",
"clean": "make clean-bind-nanovg && npm run clean-nanovg",
"watch": "npm run watch-example",
"start": "npm run start-example",
"dist": "rollup -c",
"build-nanovg": "tsc",
"watch-nanovg": "tsc --watch",
"clean-nanovg": "echo TODO: clean-nanovg",
"build-example": "tsc -p example",
"watch-example": "tsc -p example --watch",
"clean-example": "echo TODO: clean-example",
"start-example": "npm run start-example-html",
"start-example-html": "echo http://localhost:8080/example/index.html && http-server -c-1 -o",
"start-example-node": "node example/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/flyover/nanovg-js.git"
},
"author": "Isaac Burns <isaacburns@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/flyover/nanovg-js/issues"
},
"homepage": "https://github.com/flyover/nanovg-js#readme",
"dependencies": {
"@types/node": "^10.9.2",
"@types/systemjs": "^0.20.6"
},
"devDependencies": {
"http-server": "^0.11.1",
"node-fetch": "^2.2.0",
"rollup": "^0.67.4",
"rollup-plugin-commonjs": "^9.1.6",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-typescript2": "^0.18.0",
"systemjs": "^0.21.4",
"typescript": "^4.1.3"
}
}