forked from pissang/claygl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 864 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" : "qtek",
"version" : "0.4.2",
"description": "WebGL graphic library",
"keywords": [
"graphic",
"webgl"
],
"author": {
"name": "Yi Shen",
"url": "https://github.com/pissang"
},
"watch": {
"essl2js": {
"patterns": ["src"],
"extensions": "essl"
},
"amd2common": {
"patterns": ["src"],
"extensions": "js"
}
},
"scripts": {
"genentry": "node build/genentry.js",
"essl2js": "node build/essl2js.js",
"amd2common": "node build/amd2common.js",
"prepublish": "npm run essl2js && npm run genentry && npm run amd2common"
},
"repository": {
"type": "git",
"url": "https://github.com/pissang/qtek.git"
},
"devDependencies" : {
"webpack": "^1.12.13",
"esprima": "^2.7.2",
"estraverse": "^4.1.1",
"fs-extra": "^0.26.5",
"glob": "^7.0.0"
}
}