-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.11 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
{
"name": "interview-freetime",
"version": "0.1.0",
"description": "get a free time list from 2 schedules, given start and end time",
"main": "src/index.ts",
"author": ".zZehua",
"license": "None",
"private": true,
"scripts": {
"start": "./node_modules/.bin/ts-node ./src/index.ts",
"build": "./node_modules/.bin/tsc",
"test": "./node_modules/.bin/mocha --opts ./configs/mocha.opts",
"test_with_coverage": "yarn nyc --reporter=html --reporter=text ./node_modules/.bin/mocha --opts ./configs/mocha.opts"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^0.1.3",
"@types/chai": "^4.1.6",
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.10",
"@types/sinon": "^7.0.11",
"@types/sinon-chai": "^3.2.2",
"chai": "^4.2.0",
"chai-exclude": "^2.0.1",
"chai-http": "^4.3.0",
"mocha": "^7.0.0",
"mocha-junit-reporter": "^1.18.0",
"nyc": "^14.1.1",
"sinon": "^8.1.1",
"sinon-chai": "^3.3.0",
"source-map-support": "^0.5.12",
"ts-node": "^8.1.0",
"typescript": "^3.1.1"
},
"dependencies": {}
}