-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.08 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.08 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": "graphql-birdseye",
"description": "graphql visualizer",
"author": "novvum",
"license": "MIT",
"private": true,
"repository": "novvum/graphql-birdseye",
"keywords": [
"graphql-visualizer",
"graphql",
"graphql-birdseye",
"jointjs",
"graphql-playground"
],
"workspaces": [
"packages/*",
"example"
],
"engines": {
"node": ">=8",
"npm": ">=5"
},
"scripts": {
"dev": "lerna run --scope 'birdseye-example' --parallel develop",
"test": "lerna run --scope 'graphql-birdseye*' --parallel test",
"build": "lerna run --scope 'graphql-birdseye*' build",
"build:demo": "lerna run --scope birdseye-example build",
"lint": "tslint -p tsconfig.json",
"prepare": "yarn build",
"publish": "lerna publish"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-runtime": "^6.26.0",
"cross-env": "^5.1.4",
"husky": "^1.3.1",
"lerna": "^2.9.0",
"prettier": "^1.16.4",
"tslint-config-prettier": "^1.18.0",
"typescript": "2.9.2",
"yarn-run-all": "3.1.1"
},
"files": [
"dist"
]
}