This repository has been archived by the owner on Jun 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 368
/
Copy pathpackage.json
57 lines (57 loc) · 1.69 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
{
"name": "three.ar.js",
"version": "0.1.8",
"description": "A helper three.js library for building AR web experiences that run in WebARonARKit and WebARonARCore",
"main": "./dist/three.ar.js",
"module": "./dist/three.ar.module.js",
"scripts": {
"build": "rollup -c",
"build-min": "rollup -c rollup.config.min.js",
"build-all": "npm run build && npm run build-min",
"watch": "rollup -c -w",
"lint": "eslint 'src/**/*.js'",
"test": "npm run lint",
"preversion": "npm test",
"version": "npm run build-all && git add dist/*",
"postversion": "git push && git push --tags && npm publish"
},
"author": "Jordan Santell <[email protected]>",
"license": "Apache-2.0",
"devDependencies": {
"babel-core": "^6.24.1",
"babel-eslint": "^8.0.1",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.6.1",
"base64-image-loader": "^1.2.0",
"eslint": "^4.13.1",
"eslint-config-google": "^0.9.1",
"glsl-y-hsv": "^1.0.0",
"rollup": "^0.50.0",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-cleanup": "^1.0.1",
"rollup-plugin-commonjs": "^8.2.1",
"rollup-plugin-glsl": "^1.1.0",
"rollup-plugin-json": "^2.3.0",
"rollup-plugin-node-globals": "^1.1.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-uglify": "^2.0.1"
},
"keywords": [
"webar",
"webvr",
"webxr",
"arcore",
"arkit",
"webaronarcore",
"webaronarkit",
"augmented reality"
],
"peerDependencies": {
"three": "*"
},
"repository": "https://github.com/google-ar/three.ar.js",
"dependencies": {
"gl-preserve-state": "^1.0.0"
}
}