-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.17 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
81
82
83
84
{
"name": "customerorders-server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"tsc": "tsc",
"tsc-watch": "tsc -w",
"build": "gulp build",
"start": "node build/src/index.js",
"setup": "npm install",
"watch": "nodemon --watch build/src build/src/index.js",
"test": "ts-mocha --recursive ./tests/**/*.test.ts",
"test-coverage": "istanbul cover _mocha --print detail ./tests/**/*.test.ts",
"test-with-coverage": "nyc --reporter=html ts-mocha --recursive ./tests/**/*.test.ts",
"test-ci": "nyc -a --reporter=html ts-mocha --recursive --reporter mocha-bamboo-reporter ./tests/**"
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"exclude": [
"**/*.d.ts"
],
"reporter": [
"text"
],
"all": true
},
"author": "jj",
"license": "ISC",
"dependencies": {
"@types/bluebird": "^3.5.24",
"@types/expect": "^1.20.3",
"@types/underscore": "^1.8.9",
"bcrypt": "^3.0.2",
"bluebird": "^3.5.2",
"boom": "^7.2.0",
"good": "^8.1.1",
"good-console": "^7.1.0",
"good-squeeze": "^5.1.0",
"hapi": "^17.6.0",
"hapi-auth-basic": "^5.0.0",
"hapi-auth-token": "^2.0.2",
"hapi-swagger": "^9.1.2",
"inert": "^5.1.0",
"joi": "^14.0.0",
"lodash": "^4.17.11",
"mocha-bamboo-reporter": "^1.1.1",
"mongodb": "^3.1.8",
"mysql": "^2.16.0",
"mysql-model": "0.0.3",
"request": "^2.88.0",
"squel": "^5.12.2",
"ts-mocha": "^2.0.0",
"ts-node": "^7.0.1",
"typescript-string-operations": "^1.3.1",
"typings": "^2.1.1",
"underscore": "^1.9.1",
"vision": "^5.4.0"
},
"devDependencies": {
"@types/chai": "^4.1.6",
"@types/chai-as-promised": "^7.1.0",
"@types/chai-http": "^3.0.5",
"@types/es6-promise": "^3.3.0",
"@types/hapi": "^17.6.1",
"@types/mocha": "^5.2.5",
"@types/mysql": "^2.15.5",
"@types/sinon-chai": "^3.2.0",
"browserify-istanbul": "^3.0.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-http": "^4.2.0",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"sinon": "^7.0.0",
"sinon-chai": "^3.2.0"
},
"engines": {
"node": "8"
}
}