-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
68 lines (68 loc) · 2.29 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
{
"name": "@constructor-io/constructorio-node",
"version": "4.16.4",
"description": "Constructor.io Node.js client",
"main": "src/constructorio.js",
"types": "src/types/constructorio.d.ts",
"scripts": {
"verify-node-version": "chmod +x ./scripts/verify-node-version.sh && ./scripts/verify-node-version.sh",
"version": "npm run verify-node-version && npm run docs && git add ./docs/*",
"check-license": "license-checker --production --onlyAllow 'Apache-2.0;BSD-3-Clause;MIT;0BSD;BSD-2-Clause'",
"lint": "eslint 'src/**/*.js' 'spec/**/*.js' 'src/**/*.d.ts'",
"test:parallel": "mkdir -p test && cp -rf src/* test && mocha --retries 3 --parallel ./spec/*",
"test": "mkdir -p test && cp -rf src/* test && mocha --retries 3 ./spec/*",
"test:types": "tsd .",
"precoverage": "rm -rf ./coverage && rm -rf ./.nyc_output",
"coverage": "nyc --all --reporter=html npm run test:parallel",
"postcoverage": "open coverage/index.html && rm -rf test",
"docs": "jsdoc --configure ./.jsdoc.json ./README.md --recurse ./src --destination ./docs",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Constructor-io/constructorio-node.git"
},
"author": "Constructor.io Corporation",
"license": "MIT",
"bugs": {
"url": "https://github.com/Constructor-io/constructorio-node/issues"
},
"homepage": "https://github.com/Constructor-io/constructorio-node#readme",
"engines": {
"node": ">=12.20.0"
},
"files": [
"src/**/*"
],
"devDependencies": {
"@cspell/eslint-plugin": "^6.8.2",
"@types/events": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"docdash": "^2.0.1",
"dotenv": "^8.6.0",
"eslint": "^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"husky": "^7.0.4",
"jsdoc": "^4.0.2",
"license-checker": "^25.0.1",
"lodash.clonedeep": "^4.5.0",
"mocha": "^9.1.3",
"nyc": "^15.1.0",
"sinon": "^7.5.0",
"sinon-chai": "^3.7.0",
"tsd": "^0.25.0",
"uuid": "^8.3.2"
},
"dependencies": {
"form-data": "^4.0.0",
"node-abort-controller": "^3.0.0",
"node-fetch": "^3.3.2",
"qs": "6.9.7"
},
"tsd": {
"directory": "src/types/tests"
}
}