-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
63 lines (63 loc) · 2.09 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
{
"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",
"analyse-code": "sonar-scanner"
},
"dependencies": {
"axios": "^1.7.4",
"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": "^7.32.0",
"eslint-config-standard": "14.1.1",
"eslint-plugin-import": "2.23.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "6.0.0",
"eslint-plugin-standard": "5.0.0",
"mocha": "^9.2.0",
"nock": "^13.3.2",
"nyc": "^15.1.0",
"sinon": "^9.2.4",
"sinon-chai": "~3.5.0",
"sonarqube-scanner": "^2.8.1",
"ts-node": "9.1.1",
"typescript": "4.1.6"
},
"overrides": {
"semver": "7.5.2"
}
}