forked from asd-xiv/blocks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 2.79 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "@heartsradiant/blocks",
"version": "5.0.6",
"description": "REST API framework for Node.js - Hearts Radiant fork",
"homepage": "https://github.com/heartsradiant/blocks",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/heartsradiant/blocks.git"
},
"bugs": {
"url": "https://github.com/heartsradiant/blocks/issues"
},
"author": {
"name": "Andrei Dumitrescu",
"url": "https://github.com/andreidmt"
},
"contributors": [
{
"name": "David Gil",
"url": "https://github.com/dgilperez"
}
],
"keywords": [
"nodejs",
"api",
"server",
"framework"
],
"type": "module",
"exports": "./src/index.js",
"sideEffects": false,
"files": [
"/src"
],
"scripts": {
"----UTIL": "",
"setup": "rm -rf ./node_modules && npm i && npm audit fix",
"setup:ci": "npm ci --prefer-offline --no-audit --progress=false",
"update": "ncu --interactive",
"postupdate": "npm audit fix",
"format": "prettier --write --prose-wrap=always . && eslint --fix .",
"----LINT": "",
"lint:js": "eslint --quiet src",
"lint:js-staged": "eslint --quiet",
"lint:md": "markdownlint '*.md'",
"lint:md-staged": "markdownlint",
"lint": "npm run lint:md && npm run lint:js",
"----TEST": "",
"test": "node tests/index.js | tap-nirvana",
"tdd": "nodemon --watch src --watch tests --watch examples --exec \"npm test\"",
"coverage": "nyc npm run test && nyc report --reporter=text-lcov | coveralls",
"----PUBLISH": "",
"release": "semantic-release"
},
"lint-staged": {
"*.{js,json}": "npm run lint:js-staged",
"*.md": "npm run lint:md-staged"
},
"dependencies": {
"@asd14/m": "^8.1.0",
"@heartsradiant/pluginus": "^3.1.3",
"@sindresorhus/slugify": "^2.1.0",
"accepts": "^1.3.8",
"ajv": "^8.11.0",
"ajv-formats": "^2.1.1",
"ajv-keywords": "^5.1.0",
"busboy": "^1.6.0",
"connect": "^3.7.0",
"content-type": "^1.0.4",
"cors": "^2.8.5",
"cuid": "^2.1.8",
"debug": "^4.3.4",
"helmet": "^6.0.0",
"js-yaml": "^4.1.0",
"path-to-regexp": "^6.2.1",
"qs": "^6.11.0"
},
"devDependencies": {
"@asd14/eslint-config": "^8.1.0",
"@asd14/fetch-node": "^1.2.2",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"coveralls": "^3.1.1",
"eslint": "^8.24.0",
"jsonwebtoken": "^8.5.1",
"lint-staged": "^13.0.3",
"markdownlint-cli": "^0.32.2",
"nodemon": "^2.0.20",
"npm-check-updates": "^16.3.4",
"nyc": "^15.1.0",
"prettier": "^2.7.1",
"semantic-release": "^19.0.5",
"tap-nirvana": "^1.1.0",
"tape": "^5.6.1"
},
"engines": {
"node": ">=16.0.0"
}
}