-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.89 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
{
"name": "@5app/digital-hub-api",
"version": "1.1.0",
"description": "API for interacting with a Digital Hub",
"main": "src/api.js",
"engines": {
"node": ">=14.18.0"
},
"types": "./@types/index.d.ts",
"scripts": {
"prepare": "is-ci || husky install",
"lint": "eslint ./ && npx prettier --check .",
"lint-diff": "LIST=`git diff-index --name-only HEAD | grep '.*\\.js$';`; if [ \"$LIST\" ]; then eslint $LIST; fi",
"lint-fix": "eslint --fix ./",
"test": "npm run lint && npm run spec && (nyc report --reporter=text-lcov | coveralls)",
"spec": "nyc mocha ./test/specs/**.js",
"precommit-msg": "echo 'Running pre-commit checks... (skip using --no-verify)' && exit 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/5app/digital-hub-api.git"
},
"files": [
"src/",
"@types/"
],
"author": "MrSwitch",
"license": "ISC",
"bugs": {
"url": "https://github.com/5app/digital-hub-api/issues"
},
"homepage": "https://github.com/5app/digital-hub-api#readme",
"dependencies": {
"node-fetch": "^2.6.7",
"tricks": "^1.13.5"
},
"devDependencies": {
"@5app/prettier-config": "^1.0.4",
"@5app/semantic-release-config": "^1.1.0",
"@commitlint/config-conventional": "^17.4.4",
"chai": "^4.3.7",
"commitlint": "^17.5.0",
"coveralls": "^3.1.1",
"csv-parse": "^5.3.6",
"dotenv": "^16.0.3",
"eslint": "^8.36.0",
"eslint-config-5app": "^0.19.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"mocha": "^10.2.0",
"mockery": "^2.1.0",
"nyc": "15.1.0",
"prettier": "^2.8.7",
"pretty-quick": "^3.1.3",
"semantic-release": "^20.1.3",
"validator": "^13.9.0",
"yamljs": "^0.3.0"
},
"release": {
"extends": "@5app/semantic-release-config"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"prettier": "@5app/prettier-config"
}