-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 loc) · 1.38 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
49
50
51
52
53
54
{
"name": "canvas-toy",
"author": "danielhu",
"keywords": [
"webgl",
"glsl",
"rendering",
"deferred",
"tbdr"
],
"main": "build/debug/canvas-toy.js",
"types": "build/debug/canvas-toy.d.ts",
"description": "lightweight webgl rendering tool",
"version": "0.4.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/UniqueStudio/CanvasToy"
},
"bugs": {
"url": "https://github.com/UniqueStudio/CanvasToy/issues"
},
"devDependencies": {
"@types/gl-matrix": "^2.2.34",
"@types/jasmine": "^2.5.47",
"@types/webgl-ext": "0.0.28",
"awesome-typescript-loader": "^3.1.2",
"cz-conventional-changelog": "latest",
"gl": "latest",
"jasmine-core": "latest",
"karma": "latest",
"karma-chrome-launcher": "latest",
"karma-firefox-launcher": "latest",
"karma-jasmine": "latest",
"karma-requirejs": "^1.1.0",
"requirejs": "^2.3.3",
"webgl-debug": "^1.0.2"
},
"scripts": {
"test": "cd tests && tsc && karma start karma.conf.js --browsers Chrome",
"testci": "cd tests && sh testingci.sh",
"build": "node scripts/build.js",
"build_example": "cd examples && tsc",
"bundle": "webpack --config webpack.config.js"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"gl-matrix": "^2.3.2"
}
}