-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
40 lines (40 loc) · 1.4 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
{
"name": "Pointshop2",
"version": "2.26.0",
"main": "index.js",
"repository": "[email protected]:Kamshak/Pointshop2.git",
"author": "Valentin Funk <[email protected]>",
"license": "ISC",
"devDependencies": {
"dotenv": "^4.0.0",
"last-release-git": "^0.0.2",
"scriptfodder-publish": "^1.7.2",
"semantic-release": "^6.3.2",
"semantic-release-noop": "^1.1.0",
"semantic-sf-release": "2.2.2",
"shx": "^0.2.2"
},
"release": {
"getLastRelease": "last-release-git",
"verifyConditions": "semantic-release-noop"
},
"scripts": {
"build": "node build.js",
"upload": "scriptfodder-publish --version-from-package --relative-to=dist",
"sf-release": "semantic-sf-release pre && semantic-sf-release genlog && npm run build && npm run upload && semantic-sf-release post",
"local-pkg": "npm run build && scriptfodder-publish --version-from-package --relative-to=dist --zip-only && shx rm -rf dist",
"local-release": "semantic-sf-release pre --debug=false && semantic-sf-release genlog --debug=false && npm run build && npm run upload && semantic-sf-release post --debug=false",
"upload:staging": "shipit staging"
},
"publishConfig": {
"access": "restricted"
},
"dependencies": {
"glob": "^7.1.1",
"last-release-git": "^0.0.2",
"request-promise": "^4.2.0"
},
"generateNotes": {
"footerPartial": "changelog_footer_template.hbs"
}
}