-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.04 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.04 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
90
{
"name": "npq",
"version": "0.0.0-development",
"description": "marshall your npm/npm package installs with high quality and class 🎖",
"bin": {
"npq": "./bin/npq.js",
"npq-hero": "./bin/npq-hero.js"
},
"scripts": {
"lint": "eslint && npm run lint:lockfile",
"lint:lockfile": "lockfile-lint --path package-lock.json --type npm --validate-https --allowed-hosts npm npm",
"lint:fix": "eslint --fix",
"test": "jest",
"build": "node scripts/build.js",
"test:watch": "jest --watch",
"format": "prettier --config .prettierrc.js --write \"**/*.js\"",
"semantic-release": "npx semantic-release",
"#postinstall": "node scripts/postinstall.js",
"#preuninstall": "node scripts/preuninstall.js",
"prepare": "husky || true"
},
"engines": {
"node": ">=20.13.0"
},
"files": [
"bin/",
"data/",
"lib/",
"scripts/"
],
"author": {
"name": "Liran Tal",
"email": "liran.tal@gmail.com"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/lirantal/npq.git"
},
"publishConfig": {
"provenance": true,
"access": "public"
},
"dependencies": {
"npm-package-arg": "^13.0.2",
"semver": "^7.7.4",
"sigstore": "^4.1.0",
"ssri": "^13.0.1"
},
"devDependencies": {
"@eslint/js": "^9.32.0",
"eslint": "^9.32.0",
"eslint-plugin-n": "^17.21.3",
"eslint-plugin-security": "^3.0.1",
"globals": "^16.3.0",
"husky": "^9.1.7",
"jest": "^30.3.0",
"lint-staged": "^16.4.0",
"lockfile-lint": "^5.0.0",
"prettier": "^3.6.2"
},
"lint-staged": {
"**/*.js": [
"npm run format",
"npm run lint"
]
},
"release": {
"branches": [
"main"
],
"analyzeCommits": {
"preset": "angular",
"releaseRules": [
{
"type": "docs",
"release": "patch"
},
{
"type": "refactor",
"release": "patch"
},
{
"type": "style",
"release": "patch"
}
]
}
}
}