-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
47 lines (47 loc) · 1.41 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
{
"name": "webxr-layers-polyfill",
"version": "1.1.0",
"description": "",
"main": "build/webxr-layers-polyfill.js",
"module": "build/webxr-layers-polyfill.module.js",
"author": "DM Liao <[email protected]>",
"license": "Apache-2.0",
"repository": "https://github.com/immersive-web/webxr-layers-polyfill",
"files": [
"build/**/*"
],
"scripts": {
"test": "jest",
"build-module": "cross-env NODE_ENV=production rollup -c rollup.config.module.js",
"build-script": "cross-env NODE_ENV=production rollup -c",
"build-min": "cross-env NODE_ENV=production rollup -c rollup.config.min.js",
"build": "npm run build-script && npm run build-module && npm run build-min",
"format": "prettier --write ./src/**/*",
"watch": "rollup -c -w",
"serve": "http-server .",
"preversion": "npm ci",
"version": "npm run build && git add -f ./build"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-node-resolve": "^11.1.1",
"@rollup/plugin-typescript": "^8.1.1",
"@types/jest": "^26.0.22",
"@types/webxr": "^0.2.1",
"cross-env": "^7.0.3",
"http-server": "^0.12.3",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"rollup": "^2.38.5",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-license": "^2.3.0",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^26.5.4",
"tslib": "^2.1.0",
"typescript": "^4.1.4"
},
"dependencies": {
"gl-matrix": "^3.4.3"
}
}