-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
61 lines (61 loc) · 1.32 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
{
"name": "genversion",
"version": "3.2.0",
"description": "A command line utility to read version from package.json and attach it into your module as a property",
"keywords": [
"release",
"version",
"tag",
"build",
"check",
"security",
"automation",
"semver",
"module",
"package",
"development",
"dev",
"generator",
"frontend",
"bundle",
"cli",
"es6",
"es2015"
],
"homepage": "https://github.com/axelpale/genversion",
"main": "index.js",
"bin": {
"genversion": "bin/genversion.js"
},
"author": {
"name": "Akseli Palen",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git://github.com/axelpale/genversion.git"
},
"license": "MIT",
"dependencies": {
"commander": "^7.2.0",
"ejs": "^3.1.9",
"find-package": "^1.0.0"
},
"devDependencies": {
"fs-extra": "^10.0.1",
"mocha": "^8.4.0",
"should": "^13.1.0",
"standard": "^16.0.4"
},
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"test": "npm run lint && mocha",
"lint": "standard",
"lintfix": "standard --fix",
"gv": "./bin/genversion.js lib/version.js",
"check": "./bin/genversion.js --verbose --check-only lib/version.js",
"release": "npm run gv && npm run test && npm publish"
}
}