-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.13 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.13 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "vismooc-web-server",
"version": "0.12.7",
"description": "Let's Fight!",
"engines": {
"node": "^6.11.1"
},
"repository": {
"type": "git",
"url": "https://github.com/HKUST-VISLab/vismooc-web-server"
},
"main": "dist/index.js",
"scripts": {
"clean": "node tools/build clean",
"lint": "tslint -p . --force --format verbose",
"build": "npm run clean && tsc -p . || echo done",
"dev": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts ./config.json",
"test": "npm run lint && npm run build && nyc ava",
"test:tap": "npm run lint && npm run build && ava | tap-spec",
"bump": "standard-version",
"release": "git push --follow-tags origin dev"
},
"author": "zhutian",
"devDependencies": {
"@types/express": "^4.0.35",
"@types/ioredis": "^0.0.27",
"@types/koa": "^2.0.39",
"@types/koa-router": "^7.0.22",
"@types/mongoose": "^4.7.13",
"@types/morgan": "^1.7.32",
"@types/mysql": "^2.15.0",
"@types/nock": "^8.2.1",
"@types/node": "^8.0.16",
"@types/ramda": "^0.25.2",
"@types/supertest": "^2.0.0",
"@types/winston": "^2.3.3",
"ava": "^0.23.0",
"nock": "^9.0.13",
"nodemon": "^1.11.0",
"nyc": "^11.0.3",
"shelljs": "^0.7.7",
"standard-version": "^4.0.0",
"supertest": "^3.0.0",
"tap-spec": "^4.1.1",
"ts-node": "^3.3.0",
"tslint": "^5.5.0",
"typescript": "^2.3.3"
},
"dependencies": {
"d3-force": "^1.0.6",
"ioredis": "^3.0.0",
"kcors": "^2.2.0",
"koa": "^2.3.0",
"koa-bodyparser-ts": "^0.1.0",
"koa-passport-ts": "^0.1.1",
"koa-router": "^7.2.0",
"koa-session-ts": "^0.1.2",
"mongoose": "^4.10.2",
"morgan": "^1.8.2",
"mysql": "^2.13.0",
"ramda": "^0.25.0",
"winston": "^2.3.1"
},
"ava": {
"files": [
"dist/**/*.spec.js"
],
"tap": true
},
"nyc": {
"include": [
"dist/src/**/*.js"
],
"exclude": [
"dist/src/public/**/*.js",
"dist/**/*.spec.js"
],
"extensions": [
".ts"
],
"reporter": [
"lcov",
"text"
],
"cache": true,
"check-coverage": false
}
}