-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
33 lines (33 loc) · 853 Bytes
/
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
{
"name": "asteroidsjs",
"version": "1.0.0",
"description": "Old school asteroids",
"main": "asteroids.js",
"devDependencies": {
"gulp": "^4.0.0",
"gulp-concat": "^2.6.1",
"gulp-order": "^1.1.1",
"gulp-uglify": "^0.2.1",
"gulp-watch": "^5.0.1",
"http-server": "^14.0.0",
"npm-run-all": "^4.1.5",
"qunitjs": "^1.14.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "run-p watch serve",
"serve": "http-server -c-1",
"watch": "gulp watch",
"build": "gulp build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pclements12/AsteroidsJS.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/pclements12/AsteroidsJS/issues"
},
"homepage": "https://github.com/pclements12/AsteroidsJS#readme"
}