-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
58 lines (58 loc) · 1.77 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
{
"name": "three-6dof",
"version": "0.0.1",
"description": "",
"main": "dist/three-6dof.js",
"module": "dist/three-6dof.esm.js",
"types": "dist/index.d.ts",
"scripts": {
"type-check": "tsc --noEmit",
"type-check:watch": "yarn run type-check -- --watch",
"prettier": "prettier --write \"src/**/*.{js,ts}\"",
"build:js": "rollup -c",
"build:types": "tsc --declaration --emitDeclarationOnly",
"build": "yarn build:types && yarn build:js",
"build:watch": "rollup -c --watch",
"postinstall": "yarn build",
"examples": "http-server ./"
},
"author": "",
"license": "MIT",
"homepage": "https://github.com/juniorxsound/THREE.SixDOF",
"repository": {
"type": "git",
"url": "git+https://github.com/juniorxsound/THREE.SixDOF"
},
"peerDependencies": {
"three": "^0.110.0"
},
"devDependencies": {
"@babel/core": "7.5.5",
"@babel/plugin-proposal-class-properties": "7.5.5",
"@babel/preset-env": "7.5.5",
"@babel/preset-typescript": "7.3.3",
"@typescript-eslint/eslint-plugin": "2.0.0",
"@typescript-eslint/parser": "2.0.0",
"add": "2.0.6",
"eslint": "6.2.2",
"eslint-config-prettier": "6.1.0",
"eslint-config-standard": "12.0.0",
"eslint-plugin-html": "6.0.0",
"eslint-plugin-import": "2.18.0",
"eslint-plugin-node": "9.1.0",
"eslint-plugin-prettier": "3.1.0",
"eslint-plugin-promise": "4.1.1",
"eslint-plugin-standard": "4.0.0",
"http-server": "^0.11.1",
"prettier": "1.18.2",
"rollup": "1.15.0",
"rollup-plugin-babel": "4.3.3",
"rollup-plugin-eslint": "7.0.0",
"rollup-plugin-glslify": "^1.1.3",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-terser": "5.0.0",
"terser": "4.0.0",
"three": "^0.110.0",
"typescript": "^3.6.0"
}
}