-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
53 lines (53 loc) · 1.47 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
{
"name": "trustpilot",
"version": "4.0.1",
"description": "HTTP client for Trustpilot",
"homepage": "https://github.com/trustpilot/node-trustpilot",
"repository": "https://github.com/trustpilot/node-trustpilot.git",
"author": "Trustpilot",
"license": "MIT",
"keywords": [
"API",
"Trustpilot",
"reviews",
"review"
],
"main": "./dist/trustpilot-api.js",
"types": "./dist/trustpilot-api.d.ts",
"scripts": {
"build": "tsc --project tsconfig.build.json",
"lint": "tslint --project .",
"lint:fix": "tslint --project . --fix",
"start": "node dist/client.js",
"test": "mocha --require ts-node/register ./spec/*.spec.ts"
},
"dependencies": {
"axios": "^1.6.8"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^12.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^12.0.0",
"@semantic-release/release-notes-generator": "^13.0.0",
"@types/chai": "^4.2.15",
"@types/chai-as-promised": "^7.1.3",
"@types/mocha": "^8.2.1",
"@types/node": "^20.12.4",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"commitlint": "^12.0.1",
"conventional-changelog-eslint": "^3.0.9",
"husky": "^5.1.3",
"mocha": "^8.3.2",
"semantic-release": "^23.0.7",
"ts-node": "^9.1.1",
"tslint": "^6.1.3",
"typescript": "^5.4.3"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}