-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
53 lines (53 loc) · 1.34 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
{
"name": "@pkgjs/support",
"version": "0.0.6",
"description": "Package support information (see: https://github.com/nodejs/package-maintenance/pull/220)",
"author": "Wes Todd <[email protected]>",
"support": true,
"keywords": [
"support",
"package maintenance",
"sustainability"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/pkgjs/support.git"
},
"bin": {
"support": "./bin/support"
},
"scripts": {
"pretest": "eslint --ignore-path .gitignore .",
"test": "mocha --delay",
"prepublishOnly": "npm test",
"postpublish": "git push origin && git push origin --tags"
},
"dependencies": {
"@npmcli/arborist": "^0.0.0",
"ajv": "^6.11.0",
"better-ajv-errors": "^0.6.7",
"fs-extra": "^8.1.0",
"got": "^11.1.3",
"inquirer": "^7.3.3",
"js-yaml": "^4.0.0",
"json-file-plus": "^3.3.1",
"loggerr": "^3.0.0-2",
"normalize-url": "^5.0.0",
"yargs": "^15.0.2"
},
"devDependencies": {
"eslint": "^7.5.0",
"eslint-config-semistandard": "^15.0.1",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"mocha": "^6.2.0"
},
"engines": {
"node": ">=10.19"
}
}