-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.15 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.15 KB
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
84
85
86
87
88
89
{
"name": "@slimio/registry",
"version": "1.1.0",
"description": "SlimIO Addons registry",
"main": "index.js",
"scripts": {
"start": "node index.js init",
"prepublishOnly": "pkg-ok",
"hydrate": "node scripts/hydrate.js",
"test": "cross-env psp && node test/test.js",
"doc": "jsdoc -c ./jsdoc.json -r -R ./README.md -P ./package.json --verbose",
"coverage": "codecov",
"report": "nyc report --reporter=html"
},
"keywords": [
"SlimIO",
"Addon",
"Registry"
],
"files": [
"index.js",
"src/**/*.js",
"scripts"
],
"author": "SlimIO",
"license": "MIT",
"dependencies": {
"@lukeed/uuid": "^1.0.1",
"@polka/send-type": "^0.5.2",
"@slimio/is": "^1.5.1",
"argon2": "^0.26.2",
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"express-rate-limit": "^5.1.3",
"httpie": "^1.1.2",
"indicative": "^7.4.4",
"jsonwebtoken": "^8.5.1",
"kleur": "^3.0.3",
"make-promises-safe": "^5.1.0",
"nodemailer": "^6.4.6",
"pg": "^8.2.1",
"polka": "^0.5.2",
"semver": "^7.3.2",
"semver-sort": "0.0.4",
"sequelize": "^5.21.9",
"sqlite3": "^4.2.0"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@escommunity/minami": "^1.0.0",
"@slimio/eslint-config": "^4.1.0",
"@slimio/psp": "^0.11.1",
"codecov": "^3.7.0",
"cross-env": "^7.0.2",
"eslint": "^7.0.0",
"husky": "^4.2.5",
"japa": "^3.0.1",
"jsdoc": "^3.6.4",
"nyc": "^15.0.1",
"pkg-ok": "^2.3.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SlimIO/addon-registry.git"
},
"bugs": {
"url": "https://github.com/SlimIO/addon-registry/issues"
},
"homepage": "https://github.com/SlimIO/addon-registry#readme",
"engines": {
"node": ">=12"
},
"husky": {
"hooks": {
"pre-push": "cross-env eslint index.js src/*.js src/routes/*.js && npm test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"nyc": {
"check-coverage": true,
"per-file": false,
"lines": 98,
"statements": 98,
"functions": 98,
"branches": 90
},
"snyk": true
}