This repository has been archived by the owner on Jul 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
118 lines (118 loc) · 3.6 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "ncdc",
"version": "2.2.0",
"description": "A CLI that takes a consumer driven contract defined in yaml and allows you to run tests and/or create a fake server",
"main": "lib/index.js",
"bin": {
"ncdc": "./bin/ncdc"
},
"files": [
"bin",
"lib"
],
"scripts": {
"clean": "rm -rf ./lib ./coverage/*",
"typecheck": "tsc -b ./ ./black-box-tests/shared ./black-box-tests/acceptance",
"compile": "babel src --out-dir lib --extensions .ts --ignore 'src/**/*.spec.ts','src/**/*.d.ts' --source-maps inline",
"test": "jest --runInBand --bail",
"test:watch": "npm run test -- --watch",
"test:unit": "TEST_MODE=unit npm run test --",
"test:integration": "TEST_MODE=integration npm run test --",
"test:acceptance": "TEST_MODE=acceptance npm run test --",
"test:prerelease": "npm run test --prefix ./black-box-tests/pre-release",
"lint:base": "eslint --color --ignore-path .gitignore --cache",
"lint": "npm run lint:base -- '**/*.ts'",
"semantic-release": "semantic-release"
},
"husky": {
"hooks": {
"pre-commit": "npm run typecheck && lint-staged",
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
},
"lint-staged": {
"*.ts": [
"npm run lint:base -- --fix"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"repository": {
"type": "git",
"url": "https://github.com/tamj0rd2/ncdc.git"
},
"author": "Tamara Jordan",
"license": "MIT",
"bugs": {
"url": "https://github.com/tamj0rd2/ncdc/issues"
},
"homepage": "https://github.com/tamj0rd2/ncdc#readme",
"devDependencies": {
"@babel/cli": "^7.7.7",
"@babel/core": "^7.7.7",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.7.4",
"@babel/plugin-proposal-optional-chaining": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"@babel/preset-typescript": "^7.7.4",
"@babel/register": "^7.9.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@types/ajv": "^1.0.0",
"@types/dot-object": "^2.1.0",
"@types/express": "^4.17.2",
"@types/hapi__joi": "^17.1.0",
"@types/jest": "^26.0.0",
"@types/js-yaml": "^3.12.1",
"@types/json-schema": "^7.0.4",
"@types/node": "^14.0.0",
"@types/node-fetch": "^2.5.7",
"@types/qs": "^6.9.1",
"@types/supertest": "^2.0.8",
"@typescript-eslint/eslint-plugin": "^4.1.0",
"@typescript-eslint/parser": "^4.1.0",
"babel-jest": "^27.0.6",
"babel-plugin-module-resolver": "^4.0.0",
"commitizen": "^4.0.4",
"cz-conventional-changelog": "^3.1.0",
"eslint": "^7.8.1",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-jest": "^24.0.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^7.0.1",
"jest": "^26.0.0",
"lint-staged": "^11.0.0",
"nodemon": "^2.0.1",
"npm-run-all": "^4.1.5",
"nyc": "^15.0.1",
"prettier": "^2.1.1",
"semantic-release": "^17.0.7",
"source-map-support": "^0.5.16",
"strip-ansi": "^6.0.0",
"supertest": "^6.0.0",
"ts-jest": "^26.3.0",
"typescript": "^4.3.5"
},
"peerDependencies": {
"typescript": "^4.0.2"
},
"dependencies": {
"@hapi/joi": "^17.1.1",
"ajv": "^6.10.2",
"bottleneck": "^2.19.5",
"chalk": "^4.0.0",
"chokidar": "^3.4.0",
"dot-object": "^2.1.3",
"escape-string-regexp": "^4.0.0",
"express": "^4.17.1",
"js-yaml": "^3.13.1",
"node-fetch": "^2.6.0",
"qs": "^6.9.3",
"ts-json-schema-generator": "^0.95.0",
"winston": "^3.2.1",
"yargs": "^17.0.1"
}
}