forked from Danielmelody/CanvasToy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 955 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
34
35
36
37
38
39
40
{
"name": "canvas-toy",
"author": "danielhu",
"keywords": [
"webgl",
"glsl",
"canvas"
],
"main": "build/canvas-toy.js",
"description": "lightweight webgl rendering tool",
"version": "0.2.2",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/UniqueStudio/CanvasToy"
},
"bugs": {
"url": "https://github.com/UniqueStudio/CanvasToy/issues"
},
"devDependencies": {
"cz-conventional-changelog": "latest",
"gl": "latest",
"jasmine-core": "latest",
"karma": "latest",
"karma-chrome-launcher": "latest",
"karma-firefox-launcher": "latest",
"karma-jasmine": "latest"
},
"scripts": {
"test": "cd tests && sh testing.sh",
"testci": "cd tests && sh testingci.sh",
"build": "sh building.sh",
"example": "cd examples && sh runExample.sh"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}