forked from aelatgt/three-web-layer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
130 lines (130 loc) · 3.56 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "three-web-layer",
"version": "0.0.30",
"description": "Use web content in three.js scenes!",
"main": "dist/three-web-layer.umd.js",
"module": "dist/three-web-layer.es5.js",
"typings": "dist/types/three-web-layer.d.ts",
"files": [
"/dist"
],
"repository": {
"type": "git",
"url": "https://github.com/argonjs/three-web-layer.git"
},
"keywords": [
"web",
"three",
"3D",
"DOM",
"VR",
"AR",
"XR"
],
"author": "Gheric Speiginer <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/argonjs/three-web-layer/issues"
},
"homepage": "https://github.com/argonjs/three-web-layer#readme",
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"lint": "tslint --project tsconfig.json -t codeFrame 'src/**/*.ts'",
"prebuild": "rimraf dist && rimraf docs",
"build.library": "tsc --module commonjs && rollup -c rollup.config.ts ",
"build.example": "parcel build src/example/index.html --no-content-hash -d docs --public-url /three-web-layer/",
"build": "npm run build.library && npm run build.example",
"start": "npm run prebuild && parcel src/example/index.html --https -d docs --host 0.0.0.0",
"commit": "git-cz",
"semantic-release": "semantic-release"
},
"lint-staged": {
"{src,test}/**/*.ts": [
"prettier --write",
"git add"
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"prettier": {
"semi": false,
"singleQuote": true
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"babel": {
"presets": [
"@babel/preset-env",
"@vue/babel-preset-jsx"
]
},
"devDependencies": {
"@speigg/html2canvas": "^1.0.0-alpha.12-fork.0.0.1",
"resize-observer-polyfill": "^1.5.1",
"rollup-plugin-replace": "^2.2.0",
"stats.js": "^0.17.0",
"@babel/core": "^7.3.4",
"@commitlint/cli": "^7.1.2",
"@commitlint/config-conventional": "^7.1.2",
"@types/dat.gui": "^0.7.2",
"@types/node": "^10.11.0",
"@types/webpack-env": "^1.13.8",
"@vue/babel-preset-jsx": "^1.0.0-beta.2",
"@vue/component-compiler-utils": "^2.6.0",
"babel-helper-vue-jsx-merge-props": "^2.0.3",
"babel-plugin-jsx-v-model": "^2.0.3",
"babel-plugin-transform-vue-jsx": "^3.7.0",
"commitizen": "^3.0.0",
"cz-conventional-changelog": "^2.1.0",
"dat.gui": "^0.7.5",
"husky": "^1.0.1",
"lint-staged": "^8.0.0",
"noty": "^3.2.0-beta",
"parcel": "^1.11.0",
"prettier": "^1.14.3",
"rimraf": "^2.6.2",
"rollup": "^0.67.0",
"rollup-plugin-commonjs": "^9.1.8",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-livereload": "^1.0.0",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-serve": "^1.0.1",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-typescript2": "^0.19.3",
"semantic-release": "^15.13.3",
"shelljs": "^0.8.3",
"three": "^0.103.0",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"tslint-config-standard": "^8.0.1",
"typedoc": "^0.12.0",
"typescript": "^3.3.3333",
"vue": "^2.6.8",
"vue-hot-reload-api": "^2.3.3",
"vue-template-compiler": "^2.6.8"
},
"peerDependencies": {
"three": "^0.103.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged",
"pre-push": "npm run build"
}
},
"browserslist": [
"last 2 ios versions",
"last 2 chrome versions",
"last 2 firefox versions"
]
}