This repository was archived by the owner on Mar 3, 2026. It is now read-only.
forked from aerogear/graphback
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.46 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.46 KB
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",
"dependencies": {},
"devDependencies": {
"del-cli": "2.0.0",
"lerna": "3.15.0",
"npm-run-all": "4.1.5",
"nyc": "14.1.1",
"replace": "1.1.0",
"ts-node": "8.3.0",
"tslint": "5.18.0",
"tslint-config-prettier": "1.18.0",
"tslint-microsoft-contrib": "6.2.0",
"typedoc": "0.14.2",
"typescript": "3.5.3"
},
"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'",
"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"
}