This repository has been archived by the owner on Apr 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
43 lines (43 loc) · 2.15 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
{
"name": "raincatcher-angular",
"version": "1.0.0",
"description": "Feedhenry Raincatcher Angular Repository",
"main": "index.js",
"scripts": {
"test": "lerna run test --parallel --stream --ignore='@raincatcher/datasync-client' --ignore='@raincatcher/wfm' --ignore='@raincatcher/logger'",
"build": "lerna run build",
"bootstrap": "node ./scripts/checkoutCore.js clone && lerna bootstrap && lerna run build",
"bootstrapCI": "node ./scripts/checkoutCore.js clone -d && lerna bootstrap && lerna run build",
"testCI": "npm run test",
"start": "lerna run build && lerna run start --parallel --stream --scope=@raincatcher/demo-*",
"publish:prepare": "lerna bootstrap && lerna run build",
"publish:full": "npm run publish:prepare && lerna publish",
"publish:dry": "npm run publish:prepare && lerna publish --skip-npm --skip-git --canary --yes",
"publish:test": "./core/scripts/test-publish.sh",
"publish:demo-mobile": "rm -rf core/node_modules && lerna bootstrap && lerna run build --scope='@raincatcher/demo-mobile' --include-filtered-dependencies && NODE_DEBUG=gh-pages NODE_PATH=./node_modules node ./core/scripts/publish-app mobile --push true",
"publish:demo-portal": "rm -rf core/node_modules && lerna bootstrap && lerna run build --scope='@raincatcher/demo-portal' --include-filtered-dependencies && NODE_DEBUG=gh-pages NODE_PATH=./node_modules node ./core/scripts/publish-app portal --push true",
"update:check": "lerna exec --concurrency 1 -- ncu",
"update:run": "lerna exec -- ncu -a --removeRange -x 'fh-js-sdk'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/feedhenry-raincatcher/raincatcher.git"
},
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/feedhenry-raincatcher/raincatcher/issues"
},
"homepage": "https://github.com/feedhenry-raincatcher/raincatcher#readme",
"devDependencies": {
"@types/yargs": "8.0.2",
"eslint": "4.11.0",
"gh-pages": "1.1.0",
"lerna": "2.5.1",
"npm-check-updates": "2.13.0",
"opn-cli": "3.1.0",
"tslint": "5.8.0",
"typescript": "2.6.1",
"yargs": "10.0.3"
}
}