forked from holisticon/nativescript-buildhelper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.67 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
62
63
64
65
66
67
68
69
{
"name": "@holisticon/nativescript-buildhelper",
"version": "0.2.1",
"description": "Basic NPM package for helping on automate releasing of NativeScript Apps",
"bin": {
"tns-buildnumbering": "tns-buildnumbering.js",
"tns-package": "tns-package.js",
"tns-changelog": "tns-changelog.js",
"tns-release-notes": "tns-release-notes.js"
},
"scripts": {
"preclean": "npm i rimraf",
"clean": "rimraf node_modules && npm i",
"build": "npm run tsc",
"tsc": "tsc",
"postclean": "",
"debug": "node --debug-brk node_modules/jasmine-node/lib/jasmine-node/cli.js test/specs/*.spec.js",
"e2e": "jasmine-node test/e2e/*.spec.js --junitreport --output target/e2e-reports/ --verbose --color",
"jsdoc": "jsdoc -c ./jsdoc.json -t ./node_modules/ink-docstrap/template -R README.md ./etc",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"changelog:add": "git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md'",
"release:pre": "npm run build && npm run test",
"release:post": "npm run changelog && npm run changelog:add",
"release:major": "npm run release:pre && npm version major && npm run release:post && git push origin && git push origin --tags && npm run version-and-push",
"release:minor": "npm run release:pre && npm version minor && npm run release:post && git push origin && git push origin --tags && npm run version-and-push",
"release:patch": "npm run release:pre && npm version patch && npm run release:post && git push origin && git push origin --tags && npm run version-and-push",
"merge-and-publish:pre": "git checkout master && git merge develop",
"merge-and-publish": "mv ../README.md .&& mv ../LICENSE . && npm publish && git reset --hard && git clean -f",
"merge-and-publish:post": "git checkout master && git merge develop"
},
"dependencies": {
"xml2js": "0.4.16",
"yargs": "11.0.0"
},
"devDependencies": {
"@types/core-js": "0.9.46",
"@types/jasmine": "2.8.4",
"@types/node": "9.4.7",
"conventional-changelog-cli": "1.3.21",
"fs": "0.0.2",
"ink-docstrap": "1.3.2",
"jasmine-core": "3.1.0",
"jasmine-json": "0.0.3",
"jasmine-node": "1.14.5",
"rimraf": "2.6.1",
"rxjs": "5.5.6",
"tsdoc": "0.0.4",
"tslint": "5.9.0",
"tslint-eslint-rules": "5.0.0",
"typescript": "2.1.6"
},
"peerDependencies": {},
"keywords": [
"angular2",
"nativescript",
"holisticon"
],
"repository": {
"type": "git",
"url": "https://github.com/holisticon/nativescript-buildhelper.git"
},
"author": "Martin Reinhardt",
"license": "MIT",
"engine-strict": true,
"engines": {
"node": ">= 4.4",
"npm": ">= 3"
}
}