forked from yang-jessica/campusExplorer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.88 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": "cpsc310project-d0",
"description": "CPSC 310 Course Project",
"homepage": "https://github.ubc.ca/CPSC310-2017W-T2",
"author": "Reid Holmes",
"license": "GPL-3.0",
"version": "1.0.0",
"engines": {
"node": ">= 8.9 < 9"
},
"devDependencies": {
"@types/chai": "4.0.8",
"@types/chai-http": "3.0.3",
"@types/dotenv": "4.0.2",
"@types/jszip": "3.1.3",
"@types/mocha": "2.2.46",
"@types/node": "8.0.56",
"@types/recursive-readdir": "2.2.0",
"@types/parse5": "3.0.0",
"@types/decimal.js": "7.4.0",
"@types/restify": "^2.0.X",
"chai": "4.1.2",
"chai-as-promised": "7.1.1",
"chai-http": "3.0.0",
"dotenv": "4.0.0",
"jszip": "3.1.5",
"karma": "^2.0.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.1",
"karma-fixture": "^0.2.6",
"karma-html2js-preprocessor": "^1.1.0",
"karma-json-fixtures-preprocessor": "0.0.6",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"mocha": "4.1.0",
"decimal.js": "9.0.1",
"jsonschema": "1.2.2",
"parse5": "4.0.0",
"nyc": "11.3.0",
"recursive-readdir": "2.2.1",
"ts-node": "4.1.0",
"tslint": "5.8.0",
"restify": "^4.3.X",
"typescript": "2.6.2"
},
"scripts": {
"cleanwin": "rmdir node_modules /s /q & del /f .yarnclean & exit 0",
"clean": "rm -rf ./node_modules/; rm -f .yarnclean",
"cover": "nyc --reporter text --reporter html yarn run test",
"build": "tsc && tslint -c tslint.json 'src/**/*.ts' 'test/**/*.ts'",
"test": "mocha --require ts-node/register --timeout 10000",
"test:frontend": "./node_modules/karma/bin/karma start",
"start": "node src/App.js"
}
}