-
Notifications
You must be signed in to change notification settings - Fork 57
/
package.json
94 lines (94 loc) · 2.65 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "hilo3d",
"version": "1.19.0",
"description": "Hilo3d, a WebGL 3d engine.",
"main": "build/Hilo3d.js",
"types": "types/index.d.ts",
"scripts": {
"test": "npm run eslint && gulp test",
"watch": "webpack --watch --env.development",
"dev": "npm run watch",
"debug": "webpack --watch --env.debug",
"build": " webpack",
"release": "tnpm update && webpack -p",
"doc": "gulp readme && jsdoc -c doc.conf.json",
"doc-tsd": "jsdoc -c tsd-doc.conf.json && gulp addHilo3dTSD",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r",
"eslint": "eslint ./src",
"eslint-fix": "eslint --fix ./src",
"seinjs-dev": "webpack --watch --env.development --seinjs",
"seinjs-build": "webpack --env.development --seinjs",
"preversion": "npm run build && npm test",
"version": "npm run release && npm run doc && npm run doc-tsd && npm run changelog && git add -A",
"postpublish": "git push --tags",
"major": "npm version major",
"minor": "npm version minor",
"patch": "npm version patch"
},
"repository": {
"type": "git",
"url": "https://github.com/hiloteam/Hilo3d.git"
},
"keywords": [
"hilo",
"3d",
"WebGL"
],
"author": "06wj",
"license": "MIT",
"bugs": {
"url": "https://github.com/hiloteam/Hilo3d/issues"
},
"homepage": "https://hiloteam.github.io/Hilo3d",
"devDependencies": {
"@babel/core": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@hilo/tsd-jsdoc": "^0.1.5",
"babel-loader": "^8.0.2",
"conventional-changelog-cli": "^2.0.31",
"del": "^3.0.0",
"eslint": "^5.6.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-loader": "^2.1.1",
"eslint-plugin-import": "~2.22.0",
"glslify": "^6.0.1",
"glslify-import-loader": "^0.1.2",
"glslify-loader": "^1.0.2",
"gulp": "^4.0.2",
"gulp-concat": "^2.6.1",
"gulp-replace": "^1.0.0",
"gulp-uitest": "^13.0.0",
"jsdoc": "^3.6.4",
"mocha": "^5.2.0",
"raw-loader": "^0.5.1",
"should": "^13.2.3",
"should-sinon": "^0.0.6",
"sinon": "^6.3.4",
"string-replace-loader": "^2.1.1",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.1",
"wrapper-webpack-plugin": "^2.0.0"
},
"dependencies": {
"amc": "^1.0.6",
"gl-matrix": "^2.4.0",
"glsl-transpose": "^1.0.0",
"object-assign": "^4.1.1",
"object-values": "^2.0.0",
"object.keys": "^0.1.0",
"parse-hdr": "^1.0.0",
"pinkie-promise": "^2.0.1",
"ray-3d": "^1.1.1",
"webgl-debug": "^2.0.1"
},
"files": [
"build/",
"examples/js/",
"types/",
"CHANGELOG.md",
"LICENSE",
"package.json",
"README.md",
"README_ZH.md"
]
}