-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.14 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
{
"name": "aifi",
"version": "0.2.1",
"description": "Aifi API wrapper",
"keywords": [
"aifi",
"frictionless checkout",
"seamless checkout",
"api"
],
"homepage": "https://github.com/Capgemini-AIE/aifi-node",
"repository": {
"type": "git",
"url": "git://github.com/Capgemini-AIE/aifi-node.git"
},
"bugs:": "https://github.com/Capgemini-AIE/aifi-node/issues",
"author": "Graham Taylor",
"license": "MIT",
"main": "lib/aifi.js",
"types": "types/index.d.ts",
"engines": {
"node": ">=12.*"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"release-it": {
"git": {
"commitMessage": "chore: release ${version}",
"tagName": "v${version}"
},
"npm": {
"publish": false
},
"github": {
"release": true
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": "angular"
}
}
},
"scripts": {
"clean": "rm -rf ./.nyc_output ./node_modules/.cache ./coverage",
"fix": "yarn lint --fix",
"lint": "eslint --ext .js,.jsx,.ts .",
"mocha": "nyc mocha --config=test/.mocharc.js",
"mocha-only": "mocha --config=test/.mocharc.js",
"report": "nyc -r text -r lcov report",
"release": "release-it",
"test": "yarn lint && yarn test-typescript && yarn mocha",
"test:watch": "yarn test --watch",
"test-typescript": "tsc --build types/test"
},
"devDependencies": {
"@commitlint/config-conventional": "^16.0.0",
"@release-it/conventional-changelog": "^4.1.0",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.9.1",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"commitlint": "^16.1.0",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-chai-friendly": "^0.7.2",
"eslint-plugin-prettier": "^4.0.0",
"mocha": "^9.1.4",
"mocha-junit-reporter": "^2.0.2",
"nock": "^13.2.2",
"node-fetch": "2.6.7",
"nyc": "^15.1.0",
"prettier": "^2.5.1",
"release-it": "^14.12.4",
"typescript": "^4.5.4"
},
"dependencies": {
"@types/node": "^17.0.9",
"qs": "^6.10.3"
}
}