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 27
/
Copy pathpackage.json
54 lines (54 loc) · 1.64 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
{
"name": "AeroGearServicesWeb",
"version": "1.0.0",
"private": true,
"description": "AeroGear Services Web/Cordova SDK mono repository",
"main": "index.js",
"scripts": {
"test": "nyc lerna run test",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"cleanInstall": "lerna exec npm install --ignore-scripts",
"bootstrap": "lerna bootstrap --no-ci",
"lint": "tslint '*/*/src/**/*.ts' '*/*/test/**/*.ts'",
"build": "lerna run build",
"watch": "lerna run watch",
"release:prep": "./scripts/prepareRelease.sh",
"release:validate": "./scripts/validateRelease.sh",
"updateXml": "lerna exec -- \\$LERNA_ROOT_PATH/scripts/updateCordovaVersions.sh",
"publish:canary": "lerna publish --canary",
"publish": "./scripts/publishRelease.sh",
"link": "lerna exec npm link .",
"clean": "npm-run-all clean:*",
"clean:packages": "lerna run clean",
"clean:dependencies": "lerna clean --yes",
"update:check": "lerna exec --concurrency 1 -- ncu",
"update:run": "lerna exec -- ncu -a --removeRange -x 'fh-js-sdk'",
"generate:docs": "./scripts/docs.sh",
"version:master": "./scripts/versionMaster.sh",
"dev": "./scripts/syncDevEnvironment.sh"
},
"devDependencies": {
"coveralls": "3.0.8",
"del-cli": "3.0.0",
"lerna": "3.19.0",
"npm-run-all": "4.1.5",
"nyc": "14.1.1",
"replace": "1.1.1",
"ts-node": "8.5.2",
"tslint": "5.20.1",
"typedoc": "0.15.3",
"typescript": "3.7.2"
},
"dependencies": {
"@types/mocha": "5.2.7"
},
"nyc": {
"extension": [
".ts"
],
"exclude": [
"**/*.test.ts",
"**/test/**/*.ts"
]
}
}