-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.75 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
{
"name": "nock-example",
"version": "1.0.0",
"description": "Example project for my hhjs talk about Gold Master Testing with the help of nock for a nodejs project",
"main": "index.js",
"license": "MIT",
"scripts": {
"build": "rm ./dist/* -rf && tsc",
"task": "node dist/src/bin/taskRunner.js",
"goldenMaster:test": "mocha dist/tests/acceptance/TaskTests.js",
"goldenMaster:update": "yarn run task && cp ./out/data.csv ./tests/acceptance/goldenMaster.csv",
"tslint": "tslint --format verbose --project .",
"tslint:fix": "tslint --fix --project . && yarn run pretty",
"pretty": "prettier --print-width 120 trailing-commas es5 --tab-width 4 --parser typescript --write \"**/*.ts\"",
"lint:fix-all": "yarn run pretty && yarn run tslint:fix"
},
"dependencies": {
"blubird": "^0.0.1-security",
"chai": "^4.1.2",
"commander": "^2.15.1",
"figlet": "^1.2.0",
"lodash": "^4.17.10",
"mkdirp-promise": "^5.0.1",
"mz": "^2.7.0",
"request": "^2.87.0",
"request-promise": "request/request-promise"
},
"devDependencies": {
"@types/bluebird": "^3.5.20",
"@types/chai": "^4.1.3",
"@types/lodash": "^4.14.109",
"@types/mkdirp-promise": "^5.0.0",
"@types/mocha": "^5.2.0",
"@types/mz": "^0.0.32",
"@types/nock": "^9.1.3",
"@types/node": "^10.1.2",
"@types/request": "^2.47.0",
"@types/request-promise": "^4.1.41",
"tslint": "^5.10.0",
"tslint-config-airbnb": "^5.9.2",
"tslint-config-prettier": "^1.13.0",
"typescript": "^2.8.3",
"prettier": "^1.13.5",
"mocha": "^5.2.0",
"nock": "^9.2.6"
}
}