-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
28 lines (28 loc) · 1.33 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
{
"name": "ts-force-project",
"version": "3.4.4",
"description": "",
"scripts": {
"postinstall": "cd ts-force && npm install && npm run build && cd ../ts-force-gen && npm install",
"test": "cd ts-force && npm test && cd ../ts-force-gen && npm test",
"ci": "cd ts-force && npm run generate-test-classes",
"checkCommitted": "git diff-index --quiet HEAD -- || { echo 'ERROR: You have uncommitted changes! Please commit before publishing...'; exit 1; } ",
"tag": "git add '*package*.json' && git commit -m \"published v$npm_package_version\" && git tag $npm_package_version",
"prepublishOnly": "echo 'Code should be published from individual directories' && exit 1",
"publishRuntime": "cd ts-force && npm publish",
"publishGen": "cd ts-force-gen && npm publish",
"build": "cd ts-force && npm run build && cd ../ts-force-gen && npm run build",
"tagNext": "npm dist-tag add ts-force@$npm_package_version && npm dist-tag add ts-force-gen@$npm_package_version",
"publishBoth": "npm run publishRuntime && npm run publishGen && npm run tag"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ChuckJonas/ts-force.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ChuckJonas/ts-force/issues"
},
"homepage": "https://github.com/ChuckJonas/ts-force#readme"
}