forked from superfly/fly
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.64 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
{
"name": "fly-root",
"private": true,
"workspaces": {
"packages": [
"packages/*",
"tests/*"
]
},
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "tsc -b .",
"build:watch": "tsc -b -w -v .",
"bundle": "lerna run bundle",
"clean": "lerna run --parallel clean",
"clean:dependencies": "lerna clean && rm -rf node_modules",
"lint": "yarn run tslint '{packages,tests}/*/{src,tests}/**/*.{ts,tsx}'",
"lint:fix": "yarn lint --fix",
"format": "prettier --parser typescript -l --write '{packages,tests}/*/{src,tests}/**/*.{ts,tsx,js,jsx,json}'",
"test": "yarn test:packages && yarn test:e2e",
"test:packages": "jest",
"test:e2e": "lerna exec --concurrency 1 yarn test --scope \"@fly-test/*\"",
"test:v8env": "lerna exec --concurrency 1 yarn test --scope \"@fly-test/v8env\"",
"test:format": "prettier --parser typescript -l '{packages,tests}/*/{src,tests}/**/*.{ts,tsx,js,jsx,json}'",
"test:lint": "yarn lint --test --format junit --out ./artifacts/lint.junit.xml",
"doc": "lerna run doc",
"publish": "lerna publish",
"publish:pre": "lerna publish prerelease --npm-tag pre --force-publish='*'"
},
"devDependencies": {
"@types/jest": "^23.3.1",
"jest": "^23.5.0",
"jest-junit": "^5.1.0",
"jest-silent-reporter": "^0.1.1",
"lerna": "^3.4.0",
"prettier": "1.14.2",
"ts-jest": "^23.1.4",
"tslint": "^5.11.0",
"tslint-config-prettier": "1.15.0",
"typedoc": "^0.12.0",
"typedoc-plugin-external-module-name": "^1.1.3",
"typescript": "3.0.1"
},
"prettier": {
"parser": "typescript",
"semi": false,
"printWidth": 120
}
}