-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1 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
{
"name": "terminal-game",
"homepage": "https://sandbox.collinhaines.com/terminal/",
"version": "0.3.0",
"description": "A browser-based game inspired from hacking in the latest Fallout series.",
"author": "Collin Haines",
"repository": {
"type": "git",
"url": "https://github.com/collinhaines/terminal-game"
},
"license": "MIT",
"scripts": {
"lint": "grunt lint",
"prod": "grunt prod",
"test": "mocha"
},
"dependencies": {
"babel-preset-es2015": "^6.24.1",
"grunt": "^1.0.1",
"grunt-babel": "^6.0.0",
"grunt-contrib-clean": "^1.1.0",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-less": "^1.4.1",
"grunt-contrib-uglify": "^3.0.1",
"load-grunt-tasks": "^3.5.2"
},
"devDependencies": {
"chai": "^4.1.0",
"grunt-browser-sync": "^2.2.0",
"grunt-contrib-jshint": "^1.1.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-http-server": "^2.0.0",
"grunt-lesslint": "^4.0.0",
"grunt-mocha-test": "^0.13.2",
"mocha": "^3.4.2"
}
}