-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.16 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
{
"name": "@awayjs/materials",
"version": "0.6.16",
"description": "Materials for AwayJS",
"main": "bundle/awayjs-materials.umd.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"url": "http://www.away3d.com",
"author": "Rob Bateman",
"repository": {
"type": "git",
"url": "git+https://github.com/awayjs/materials.git"
},
"scripts": {
"rimraf": "rimraf",
"rollup": "rollup -c",
"tsc": "tsc",
"tsc:build": "npm run tsc || exit 0",
"clean": "npm cache clean && npm run rimraf -- node_modules dist bundle",
"clean:dist": "npm run rimraf -- dist bundle",
"watch": "npm run tsc -- --w",
"eslint": "eslint ./lib --fix",
"eslint:commit": "npm run eslint && npm run --silent gitdiff || git add -u && git commit -m \"fixed by eslint\"",
"gitdiff": "git diff --quiet && git diff --cached --quiet",
"preversion": "npm run gitdiff && npm run eslint:commit || exit 0",
"prebuild": "npm run clean:dist",
"build": "npm run tsc:build && npm run rollup",
"copyVersionToIndex": "node ./copyVersionToIndex && git add ./index.ts && git commit -m \"update version number in index.ts\"",
"version": "npm run copyVersionToIndex && npm run build",
"postversion": "git push && git push --tags && npm publish"
},
"keywords": [
"AwayJS",
"WebGL",
"2D",
"3D",
"graphics"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/awayjs/materials/issues"
},
"homepage": "https://github.com/awayjs/materials#readme",
"peerDependencies": {
"@awayjs/core": "^0.9.0",
"@awayjs/renderer": "^0.11.0",
"@awayjs/stage": "^0.11.0",
"@awayjs/view": "^0.6.0",
"tslib": "^2.3.0"
},
"devDependencies": {
"@awayjs/core": "^0.9.0",
"@awayjs/renderer": "^0.11.0",
"@awayjs/stage": "^0.11.0",
"@awayjs/view": "^0.6.0",
"@rollup/plugin-commonjs": "^18.0.0",
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-node-resolve": "^11.2.1",
"@typescript-eslint/eslint-plugin": "^4.4.1",
"@typescript-eslint/parser": "^4.4.1",
"eslint": "^7.11.0",
"rimraf": "^2.5.2",
"rollup": "^2.79.1",
"tslib": "^2.3.0",
"typescript": "^4.9.5"
}
}