This repository has been archived by the owner on Sep 13, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
58 lines (58 loc) · 1.46 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
58
{
"name": "shapeshifter-root",
"private": true,
"version": "0.0.0",
"scripts": {
"build": "yarn run type",
"check": "yarn run check:flow && yarn run check:ts",
"check:flow": "flow check",
"check:ts": "tsc --noEmit --lib esnext,esnext.asynciterable ./tests/expected/graphql/typescript/*.ts ./tests/expected/common/typescript/*.ts",
"coverage": "yarn run jest --coverage",
"lint": "beemo eslint",
"jest": "beemo jest",
"format": "beemo prettier",
"pretest": "yarn run type",
"test": "yarn run jest",
"test:bin": "shapeshifter --attributes --definitions --schemas --schema-generics --typescript ./tests/schemas/types-schemas.json",
"test:webpack": "webpack",
"posttest": "yarn run lint",
"type": "beemo typescript --build --reference-workspaces",
"prerelease": "yarn test && yarn run build",
"release": "lerna publish"
},
"engines": {
"node": ">=10.10.0"
},
"devDependencies": {
"@milesj/build-tools": "^2.13.1",
"conventional-changelog-beemo": "^2.0.0",
"lerna": "^3.22.1"
},
"workspaces": [
"packages/*"
],
"beemo": {
"module": "@milesj/build-tools",
"drivers": [
"babel",
"eslint",
"jest",
"prettier",
"typescript"
],
"eslint": {
"ignore": [
"tests/expected/**/*",
"tests/bundle.js"
]
},
"prettier": {
"ignore": [
"tests/expected/**/*"
]
}
},
"browserslist": [
"ie 11"
]
}