This repository was archived by the owner on Jan 5, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.8 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.8 KB
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
{
"name": "@ekolabs/aframe-spritesheet-component",
"version": "1.0.0",
"description": "Animated spritesheet support for A-Frame",
"main": "index.js",
"cdn": "dist/aframe-spritesheet-component.min.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",
"prepublish": "npm run dist",
"start": "npm run dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EkoLabs/aframe-spritesheet-component.git"
},
"keywords": [
"aframe",
"aframe-component",
"aframe-vr",
"vr",
"mozvr",
"webvr",
"spritesheet"
],
"license": "Apache-2.0",
"author": {
"name": "Eko labs",
"url": "https://developer.helloeko.com",
"email": "dev@helloeko.com"
},
"contributors": [
{
"name": "Opher Vishnia",
"email": "opherv@gmail.com",
"url": "http://opherv.com"
}
],
"bugs": {
"url": "https://github.com/ekolabs/aframe-spritesheet-component/issues"
},
"homepage": "https://github.com/ekolabs/aframe-spritesheet-component#readme",
"files": [
"README.md",
"aframe_spritesheet.gif",
"LICENSE",
"index.js",
"package.json",
"dist/"
],
"devDependencies": {
"aframe": "^0.4.0",
"babel-core": "^6.23.1",
"babel-loader": "^6.3.2",
"babel-preset-es2015": "^6.22.0",
"browserify": "^13.0.0",
"budo": "^8.2.2",
"chai": "^3.4.1",
"chai-shallow-deep-equal": "^1.3.0",
"randomcolor": "^0.4.4",
"shelljs": "^0.7.0",
"webpack": "^2.2.1",
"eslint": "^3.15.0",
"eslint-config-google": "^0.7.1"
},
"semistandard": {
"ignore": [
"examples/build.js",
"dist/**"
]
},
"dependencies": {
"global": "^4.3.1"
}
}