-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.05 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.05 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
{
"name": "add-in",
"version": "0.0.1",
"description": "npx add-in feature to ServiceStack projects",
"main": "lib/index.js",
"bin": {
"add-in": "./bin/add-in.js"
},
"scripts": {
"test": "node test/test.js",
"bump": "npm version patch && git push origin main --follow-tags",
"bump:minor": "npm version minor && git push origin main --follow-tags",
"bump:major": "npm version major && git push origin main --follow-tags",
"release": "gh release create v$(node -p \"require('./package.json').version\") --title v$(node -p \"require('./package.json').version\") --generate-notes"
},
"keywords": [
"servicestack",
"mix",
"gist",
"cli"
],
"author": "ServiceStack",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "git+https://github.com/ServiceStack/add-in.git"
},
"bugs": {
"url": "https://github.com/ServiceStack/add-in/issues"
},
"homepage": "https://github.com/ServiceStack/add-in#readme",
"engines": {
"node": ">=14.0.0"
},
"files": [
"bin/",
"lib/"
]
}