-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
41 lines (41 loc) · 976 Bytes
/
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
{
"name": "config-curator",
"version": "2.0.0",
"description": "Config curator.",
"type": "module",
"exports": {
"import": "./index.js"
},
"bin": {
"curator": "bin/curator.js"
},
"homepage": "https://github.com/razor-x/config-curator",
"bugs": "https://github.com/razor-x/config-curator/issues",
"repository": "razor-x/config-curator",
"license": "MIT",
"author": {
"name": "Evan Sosenko",
"email": "[email protected]"
},
"files": [
"index.js",
"lib",
"bin"
],
"scripts": {
"test": "node ./bin/curator.js ./test/manifest.js",
"pretest": "node ./lib/index.js",
"lint": "standard",
"format": "standard --fix",
"preformat": "prettier --write --ignore-path .gitignore '**/*.(js|json|yml)'",
"postversion": "git push && git push --tags"
},
"engines": {
"node": ">=14.15.0",
"npm": ">= 8.1.0"
},
"devDependencies": {
"prettier": "^2.3.0",
"standard": "^17.0.0"
}
}