-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.47 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
{
"name": "space-assaulter",
"version": "0.0.1",
"description": "A three dimensional browser based real time strategy game",
"keywords": [
"HTML5",
"canvas",
"webgl",
"game"
],
"bugs": {
"url": "https://github.com/HackRVA/space-assaulter/issues"
},
"repository": "https://github.com/HackRVA/space-assaulter.git",
"license": "MIT",
"author": {
"name": "Space Assaulter Team at HackRVA"
},
"contributors": [
{
"name": "Matthew Balch",
"email": "[email protected]"
},
{
"name": "Aaron Nipper"
},
{
"name": "Dustin Firebaugh"
}
],
"main": "",
"dependencies": {},
"devDependencies": {
"broccoli-cli": "^1.0.0",
"broccoli-merge-trees": "^1.1.2",
"broccoli-rollup": "1.0.3",
"canvas-screens": "git://github.com/Matt5sean3/canvas-screens.git",
"jshint": "^2.9.2",
"rollup-plugin-commonjs": "^7.0.0",
"rollup-plugin-node-resolve": "^2.0.0",
"three": "^0.83.0"
},
"jshintConfig": {
"esversion": 6
},
"scripts": {
"clean": "rm -rf build",
"build": "node_modules/.bin/broccoli build build",
"build-resources": "blender --background --python export_json.py",
"prepublish": "npm run clean; npm run build",
"lint": "node_modules/.bin/jshint src",
"lint-tests": "node_modules/.bin/jshint test",
"mocha-tests": "node_modules/.bin/mocha --compilers js:babel-core/register",
"test": "npm run lint; npm run lint-tests; npm run mocha-tests"
}
}