-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
78 lines (78 loc) · 2.17 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
{
"name": "@asd14/pluginus",
"version": "3.0.0",
"description": "Dependency injection with promise support.",
"license": "MIT",
"homepage": "https://github.com/asd-xiv/pluginus",
"repository": {
"type": "git",
"url": "git+https://github.com/asd-xiv/pluginus.git"
},
"bugs": {
"url": "https://github.com/asd-xiv/pluginus/issues"
},
"author": {
"name": "Andrei Dumitrescu",
"url": "https://github.com/andreidmt"
},
"keywords": [
"dependency-injection",
"plugin-manager",
"node"
],
"type": "module",
"exports": "./src/pluginus.js",
"sideEffects": false,
"files": [
"/src"
],
"scripts": {
"----UTIL": "",
"prepare": "git config --local core.hooksPath .githooks",
"setup": "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:js && npm run lint:md",
"----TEST": "",
"tdd": "nodemon --watch src --exec \"npm test\"",
"test": "tape src/*.test.js | tap-nirvana",
"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": "^7.8.1"
},
"devDependencies": {
"@asd14/eslint-config": "^7.3.0",
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"coveralls": "^3.1.1",
"eslint": "^8.13.0",
"glob": "^8.0.1",
"lint-staged": "^12.3.8",
"markdownlint-cli": "^0.31.1",
"nodemon": "^2.0.15",
"npm-check-updates": "^12.5.9",
"nyc": "^15.1.0",
"prettier": "^2.6.2",
"semantic-release": "^19.0.2",
"tap-nirvana": "^1.1.0",
"tape": "^5.5.3"
},
"engines": {
"node": "^14.13.1 || >=16.0.0"
}
}