-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.27 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
{
"name": "paintgl",
"version": "0.2.0",
"description": "[WIP] WebGL wrapper for 2D painting",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"docs": "typedoc --theme node_modules/typedoc-theme-clean/bin --mode file --target ES6 --module commonjs --out docs src/index.ts",
"example": "cd example && webpack-dev-server",
"build": "cd src && tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sketchglass/paintgl.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/sketchglass/paintgl/issues"
},
"homepage": "https://github.com/sketchglass/paintgl#readme",
"devDependencies": {
"@types/node": "^6.0.53",
"glsl-noise": "0.0.0",
"glslify": "^6.0.1",
"npm-run-all": "^3.1.2",
"paintvec": "github:sketchglass/paintvec",
"raw-loader": "^0.5.1",
"transform-loader": "^0.2.3",
"ts-loader": "^1.3.3",
"typedoc": "github:jasongrout/typedoc#ts2",
"typedoc-theme-clean": "github:seanchas116/typedoc-theme-clean",
"typescript": "^2.1.4",
"webpack": "^1.14.0",
"webpack-dev-server": "^1.16.2"
},
"directories": {
"doc": "docs",
"example": "example"
},
"dependencies": {}
}