-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.2 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 2.2 KB
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
{
"name": "@companieshouse/api-sdk-node",
"version": "0.0.0",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"license": "MIT",
"scripts": {
"build": "tsc",
"test": "mocha",
"test:coverage": "nyc --check-coverage --reporter=text-summary npm run test",
"coverage:report": "nyc --reporter=lcov --reporter=text npm run test",
"lint": "eslint 'src/*.ts' 'src/**/*.ts' 'test/**/*.ts'",
"lint:fix": "eslint 'src/*.ts' 'src/**/*.ts' 'test/**/*.ts' --fix",
"prepublishOnly": "[ ! -d node_modules ] && npm install; tsc",
"postpublish": "rm -rf dist"
},
"dependencies": {
"axios": "^1.8.2",
"camelcase-keys": "~6.2.2",
"http-status-codes": "^2.3.0",
"snakecase-keys": "~3.2.0",
"url-search-params-polyfill": "~8.1.1"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/axios": "^0.14.0",
"@types/chai": "^4.2.22",
"@types/chai-as-promised": "^7.1.4",
"@types/chai-http": "~4.2.0",
"@types/mocha": "~8.0.4",
"@types/node": "^14.14.45",
"@types/request": "^2.48.8",
"@types/request-promise-native": "^1.0.18",
"@types/sinon": "^9.0.11",
"@types/sinon-chai": "^3.2.8",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"chai": "~4.2.0",
"chai-as-promised": "~7.1.1",
"chai-http": "~4.3.0",
"eslint": "^8.57.1",
"eslint-config-standard": "14.1.1",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.6.0",
"eslint-plugin-standard": "5.0.0",
"mocha": "^11.7.2",
"nock": "^13.3.2",
"nyc": "^18.0.0",
"sinon": "^9.2.4",
"sinon-chai": "~3.5.0",
"ts-node": "^10.9.2",
"typescript": "^4.1.6"
},
"overrides": {
"semver": "7.5.2",
"diff": "^8.0.2",
"uuid": "^11.1.1",
"serialize-javascript": "^7.0.5",
"@istanbuljs/load-nyc-config@1.1.0": {
"js-yaml": "^4.2.0"
}
}
}