-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
100 lines (100 loc) · 2.9 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "starcitizen-webgl-map",
"version": "0.9.0",
"description": "WebGL Star Citizen Map",
"private": true,
"main": "build/starcitizen-webgl-map.js",
"scripts": {
"test": "gulp",
"test-browser": "gulp test-browser",
"build": "gulp build",
"coverage": "gulp coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/Leeft/starcitizen-webgl-map.git"
},
"keywords": [
"Star Citizen",
"Squadron 42",
"map",
"webgl",
"3d"
],
"author": "Lianna Eeftinck <liannaee@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Leeft/starcitizen-webgl-map/issues"
},
"homepage": "https://github.com/Leeft/starcitizen-webgl-map",
"devDependencies": {
"babel-core": "^5.2.17",
"babel-eslint": "^4.0.5",
"babelify": "^6.0.0",
"browserify": "^12.0.1",
"chai": "^3.2.0",
"del": "^2.2.0",
"glob": "^5.0.15",
"gulp": "^3.8.10",
"gulp-babel": "^5.0.0",
"gulp-eslint": "^1.0.0",
"gulp-file": "^0.2.0",
"gulp-filter": "^3.0.0",
"gulp-istanbul": "^0.10.0",
"gulp-jscs": "^3.0.2",
"gulp-livereload": "^3.4.0",
"gulp-load-plugins": "^1.1.0",
"gulp-mocha": "^2.0.0",
"gulp-notify": "^2.1.0",
"gulp-plumber": "^1.0.1",
"gulp-rename": "^1.2.0",
"gulp-sass": "^2.1.1",
"gulp-shell": "^0.5.1",
"gulp-sourcemaps": "^1.3.0",
"gulp-uglify": "^1.2.0",
"isparta": "^3.0.3",
"jsdom": "^7.2.1",
"jspm": "^0.16.19",
"mocha": "^2.1.0",
"run-sequence": "^1.0.2",
"sinon": "^1.12.2",
"sinon-chai": "^2.7.0",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.0.0",
"watchify": "^3.3.1"
},
"babelBoilerplateOptions": {
"entryFileName": "src/starcitizen-webgl-map.js",
"mainVarName": "SCMAP",
"mochaGlobals": [
"stub",
"spy",
"expect"
]
},
"jspm": {
"dependencies": {
"element-resize-detector": "npm:element-resize-detector@^1.0.3",
"es6-promise": "npm:es6-promise@^3.0.2",
"font-awesome": "npm:font-awesome@^4.5.0",
"handlebars": "github:components/handlebars.js@^4.0.5",
"hbs": "github:davis/plugin-hbs@^1.2.1",
"javascript-state-machine": "npm:javascript-state-machine@^2.3.5",
"jquery": "github:components/jquery@^2.1.4",
"jquery-mousewheel": "npm:jquery-mousewheel@3.1.12",
"jquery-ui": "github:components/jqueryui@^1.11.4",
"jscrollpane": "npm:jscrollpane@^2.0.22",
"leeft/three-sprite-texture-atlas-manager": "github:leeft/three-sprite-texture-atlas-manager@0.1.3",
"markdown": "npm:markdown@^0.5.0",
"rsvp": "npm:rsvp@^3.1.0",
"stats.js": "github:mrdoob/stats.js@r14",
"three": "github:mrdoob/three.js@r73",
"tween.js": "npm:tween.js@^16.3.1"
},
"devDependencies": {
"babel": "npm:babel-core@^5.8.24",
"babel-runtime": "npm:babel-runtime@^5.8.24",
"core-js": "npm:core-js@^1.1.4"
}
}
}