-
Notifications
You must be signed in to change notification settings - Fork 109
/
Copy pathpackage.json
38 lines (38 loc) · 1.2 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
{
"name": "g3d",
"version": "0.2.9",
"description": "webgl render engine compatible with both browser and gcanvas",
"main": "dist/g3d.min.js",
"repository": {
"type": "git",
"url": "https://github.com/alibaba/G3D"
},
"devDependencies": {
"codecov": "^3.1.0",
"dalaran": "^0.2.8",
"expect": "^23.6.0",
"fs-extra": "^7.0.1",
"glob": "^7.1.3",
"handlebars": "^4.0.12",
"less": "^3.8.1",
"marked": "^0.5.1",
"pug": "^2.0.3",
"raw-loader": "^0.5.1",
"yaml-js": "^0.2.3"
},
"scripts": {
"new": "node ./devtools/index.js new",
"build": "node ./devtools/index.js build",
"dev": "node ./devtools/index.js dev",
"ci": "node ./devtools/index.js test -coverage && codecov coverage/cobertura-coverage.xml",
"test": "node ./devtools/index.js test",
"test:render": "node ./devtools/index.js test -render",
"test:coverage": "node ./devtools/index.js test -coverage -render",
"website": "node ./devtools/website.js",
"prepublishOnly": "npm run build",
"format": "node ./devtools/format-demo.js",
"lint": "tslint -c ./devtools/lint-config/tslint.json ./src/**/*.ts --fix"
},
"keywords": [],
"author": "[email protected]"
}