This repository has been archived by the owner on Jan 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
77 lines (77 loc) · 2.49 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
{
"name": "@aframe-community/aframe-stats-in-vr-component",
"version": "0.1.8",
"description": "stats-in-vr component for A-Frame.",
"main": "index.js",
"scripts": {
"build": "browserify examples/main.js -o examples/build.js",
"dev": "budo examples/main.js:build.js --dir examples --port 8000 --live --open",
"dist": "webpack index.js dist/aframe-stats-in-vr-component.js && webpack -p index.js dist/aframe-stats-in-vr-component.min.js",
"lint": "semistandard -v | snazzy",
"prepublish": "npm run dist",
"preghpages": "npm run build && shx rm -rf gh-pages && shx mkdir gh-pages && shx cp -r examples/* gh-pages",
"ghpages": "npm run preghpages && ghpages -p gh-pages",
"start": "npm run dev",
"test": "karma start ./tests/karma.conf.js",
"test:docs": "node scripts/docs-lint.js",
"test:firefox": "karma start ./tests/karma.conf.js --browsers Firefox",
"test:chrome": "karma start ./tests/karma.conf.js --browsers Chrome",
"test:ci": "TEST_ENV=ci karma start ./tests/karma.conf.js --single-run --browsers Firefox",
"unboil": "node scripts/unboil.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aframe-community/stats-in-vr.git"
},
"keywords": [
"aframe",
"aframe-component",
"aframe-vr",
"vr",
"mozvr",
"webvr",
"stats"
],
"author": "aframe-community https://github.com/aframe-community",
"license": "MIT",
"bugs": {
"url": "https://github.com/aframe-community/stats-in-vr/issues"
},
"homepage": "https://github.com/aframe-community/stats-in-vr#readme",
"devDependencies": {
"aframe": "^1.0.4",
"browserify": "^13.0.0",
"browserify-css": "^0.9.1",
"budo": "^8.2.2",
"chai": "^3.5.0",
"chai-shallow-deep-equal": "^1.4.0",
"envify": "^3.4.1",
"ghpages": "^0.0.8",
"inquirer": "^1.0.2",
"karma": "^6.3.14",
"karma-browserify": "^5.1.0",
"karma-chai-shallow-deep-equal": "0.0.4",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.1.1",
"karma-env-preprocessor": "^0.1.1",
"karma-firefox-launcher": "^1.0.0",
"karma-mocha": "^1.1.1",
"karma-mocha-reporter": "^2.1.0",
"karma-sinon-chai": "^1.2.4",
"mocha": "^3.0.2",
"randomcolor": "^0.4.4",
"semistandard": "^8.0.0",
"shelljs": "^0.8.5",
"shx": "^0.1.1",
"sinon": "^1.17.5",
"sinon-chai": "^2.8.0",
"snazzy": "^4.0.0",
"webpack": "^1.13.0"
},
"semistandard": {
"ignore": [
"examples/build.js",
"dist/**"
]
}
}