forked from aerogear/graphback
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.55 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
{
"name": "graphback-monorepository",
"version": "1.0.0",
"private": true,
"description": "Mono repository for Graphback project",
"main": "index.js",
"devDependencies": {
"del-cli": "3.0.0",
"lerna": "3.17.0",
"npm-run-all": "4.1.5",
"nyc": "14.1.1",
"replace": "1.1.1",
"ts-node": "8.5.2",
"tslint": "5.20.1",
"tslint-config-prettier": "1.18.0",
"tslint-microsoft-contrib": "6.2.0",
"typedoc": "0.15.3",
"typescript": "3.7.2"
},
"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 'packages/*/src/**/*.ts' 'templates/*/src/**/*.ts' 'packages/*/test/**/*.ts'",
"lint-fix": "tslint 'packages/*/src/**/*.ts' 'templates/*/src/**/*.ts' 'packages/*/test/**/*.ts' --fix",
"build": "lerna run build",
"watch": "lerna run watch",
"release:prep": "./scripts/prepareRelease.sh",
"release:validate": "./scripts/validateRelease.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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aerogear/graphback.git"
},
"bugs": {
"url": "https://github.com/aerogear/graphback/issues"
},
"homepage": "https://github.com/aerogear/graphback#readme"
}