This repository has been archived by the owner on Apr 12, 2023. It is now read-only.
forked from aerogear/offix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.68 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
{
"name": "ApolloOffline",
"version": "1.0.0",
"private": true,
"description": "",
"main": "index.js",
"scripts": {
"test": "nyc lerna run test",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"cleanInstall": "lerna exec yarn install --ignore-scripts",
"bootstrap": "lerna bootstrap --no-ci",
"lint": "tslint '*/*/src/**/*.ts' '*/*/test/**/*.ts'",
"lint-fix": "tslint '*/*/src/**/*.ts' '*/*/test/**/*.ts' --fix",
"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 yarn 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"
},
"devDependencies": {
"@types/graphql": "14.2.3",
"@types/jest": "24.0.23",
"coveralls": "3.0.7",
"cross-fetch": "3.0.4",
"del-cli": "3.0.0",
"graphql": "14.5.8",
"lerna": "3.18.5",
"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.2",
"typescript": "3.7.2"
},
"dependencies": {
"@types/mocha": "5.2.7",
"@types/node": "12.12.11"
},
"nyc": {
"extension": [
".ts"
],
"exclude": [
"**/*.test.ts"
]
}
}