-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
35 lines (35 loc) · 846 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
34
35
{
"name": "cpsc310bootstrap",
"description": "Stub project",
"homepage": "https://github.com/ubccpsc/310",
"author": "Reid Holmes",
"contributors": "N/A",
"license": "GPL-3.0",
"repository": "N/A",
"bugs": "",
"keywords": [],
"version": "0.0.1",
"devDependencies": {
"chai": "^3.5.0",
"icedfrisby": "^0.2.4",
"istanbul": "^0.4.4",
"joi": "^8.4.2",
"mocha": "^2.5.3",
"typescript": "^1.8.7",
"typings": "^1.3.0"
},
"scripts": {
"clean": "rm -rf ./typings/ && rm -rf ./node_modules/",
"configure": "npm install && typings install --global",
"build": "tsc",
"test": "mocha -c",
"cover": "istanbul cover _mocha",
"start": "node src/App.js"
},
"dependencies": {
"jszip": "^3.1.2",
"restify": "^4.0.3",
"tslint": "^3.15.1",
"typescript": "^1.8.10"
}
}