-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
80 lines (80 loc) · 2.45 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "y",
"dependencies": {
"babel-polyfill": "^6.20.0",
"cheerio": "^0.22.0",
"crypto-js": "^3.1.8",
"es6-sleep": "2.0.2",
"html-to-text": "^2.1.3",
"iconv-lite": "^0.4.15",
"koa": "^2.0.0-alpha.7",
"koa-better-body": "^3.0.2",
"koa-convert": "^1.2.0",
"koa-logger": "^2.0.0",
"koa-router": "^7.0.1",
"moment": ">= 2.0.0",
"mongoose": "^4.7.0",
"request": "^2.79.0",
"request-promise": "^4.1.1",
"restc": "0.0.2",
"uuid": "^3.0.1"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-eslint": "^7.1.1",
"babel-plugin-bluebird-async-functions": "^1.2.0",
"babel-plugin-istanbul": "^3.0.0",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-plugin-transform-async-to-module-method": "^6.16.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-3": "^6.17.0",
"babel-register": "^6.18.0",
"chai": "^3.5.0",
"coveralls": "^2.11.15",
"cross-env": "^3.1.3",
"eslint": "^3.10.2",
"fs-readfile-promise": "^3.0.0",
"glob": "^7.1.1",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-clean": "^0.3.2",
"gulp-eslint": "^3.0.1",
"gulp-mocha": "^3.0.1",
"gulp-sourcemaps": "^1.9.1",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"mocha-lcov-reporter": "^1.2.0",
"nock": "^9.0.2",
"nodemon": "^1.11.0",
"nyc": "^10.0.0",
"should": "^11.1.1",
"supertest": "^2.0.1"
},
"description": "Open API for Tsinghua University Developer.",
"version": "1.0.0",
"main": "app/index.js",
"scripts": {
"start": "node --harmony app/index.js",
"dev": "nodemon -w app --debug --exec node --harmony app/index.js",
"test": "mocha --harmony --require should test/index.js",
"coverage-es5": "gulp && nyc --reporter=lcov --reporter=text mocha --require should dist/test/index.js && gulp clean",
"coverage": "nyc --extension .es6 --reporter=lcov --reporter=text mocha --harmony --require should test/index.js",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"lint": "eslint app test",
"lint-fix": "eslint --fix app test",
"mongo": "mongod --dbpath db"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TennyZhuang/CamusAPI.git"
},
"keywords": [
"THU"
],
"author": "TennyZhuang",
"license": "MIT",
"bugs": {
"url": "https://github.com/TennyZhuang/CamusAPI/issues"
},
"homepage": "https://github.com/TennyZhuang/CamusAPI#readme"
}