forked from aframevr/aframe-inspector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.65 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
{
"name": "aframe-inspector",
"version": "1.2.0",
"description": "A visual inspector tool for A-Frame.",
"main": "dist/aframe-inspector.min.js",
"scripts": {
"build": "cross-env NODE_ENV=production webpack --progress --colors",
"deploy": "npm run ghpages",
"dist": "npm run dist:max && npm run dist:min",
"dist:max": "cross-env AFRAME_DIST=true npm run build",
"dist:min": "cross-env MINIFY=true AFRAME_DIST=true npm run build",
"ghpages": "npm run preghpages && ghpages -p gh-pages",
"lint": "npm run lintfile src/",
"lint:css": "stylelint src/css/main.css",
"lintfile": "node --harmony node_modules/.bin/eslint",
"preghpages": "npm run dist && shx rm -rf gh-pages && shx mkdir gh-pages && shx cp -r assets dist examples index.html gh-pages && shx sed -i http://localhost:3333 .. gh-pages/examples/index.html",
"prepublish": "npm run dist",
"prettier": "prettier --single-quote es5 --write 'src/**/*.js'",
"start": "cross-env NODE_ENV=dev webpack-dev-server --progress --colors -d --host 0.0.0.0",
"test": "jest --watch",
"test:ci": "jest"
},
"repository": "aframevr/aframe-inspector",
"license": "MIT",
"dependencies": {
"autoprefixer": "^9.4.2",
"babel-core": "^6.26.3",
"babel-eslint": "^6.1.0",
"babel-jest": "^16.0.0",
"babel-loader": "^7.1.5",
"babel-plugin-transform-class-properties": "^6.10.2",
"babel-preset-es2015": "^6.16.0",
"babel-preset-react": "^6.16.0",
"classnames": "^2.2.5",
"clipboard": "^1.5.12",
"cross-env": "^5.2.0",
"css-loader": "^0.23.1",
"eslint": "^2.9.x",
"eslint-config-standard": "^5.3.1",
"eslint-plugin-promise": "^1.3.2",
"eslint-plugin-react": "^5.2.2",
"eslint-plugin-standard": "^1.3.2",
"ghpages": "0.0.10",
"gm": "^1.23.0",
"invariant": "^2.2.2",
"jest": "^16.0.1",
"lodash.debounce": "^4.0.6",
"object-assign": "^4.1.0",
"open": "0.0.5",
"postcss-loader": "^0.9.1",
"prettier": "^1.15.3",
"prop-types": "^15.6.0",
"react": "^15.3.2",
"react-dom": "^15.3.0",
"react-file-reader-input": "^1.1.4",
"react-select": "^2.1.2",
"react-test-renderer": "^15.3.2",
"shx": "^0.1.2",
"style-loader": "^0.13.1",
"stylelint": "^8.0.0",
"stylelint-config-standard": "^17.0.0",
"stylelint-order": "^0.6.0",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"webpack": "^2.3.3",
"webpack-dev-server": "^2.11.2"
},
"keywords": [
"3d",
"aframe",
"editor",
"inspector",
"three.js",
"tool",
"unity",
"vr",
"virtualreality",
"webvr",
"wysiwyg"
],
"devDependencies": {
"postcss-import": "^8.0.2"
}
}