-
-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
62 lines (62 loc) · 2.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
59
60
61
62
{
"name": "fab-spec",
"version": "1.0.0-rc1",
"private": true,
"homepage": "https://github.com/fab-spec/fab",
"bugs": "https://github.com/fab-spec/fab/issues",
"repository": "fab-spec/fab",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "lerna run build --parallel",
"build:codesandbox": "lerna exec -- npm pack",
"build:watch": "run-p build:watch:*",
"build:watch:cjs": "yarn tsc --module commonjs --outDir build/lib --watch --preserveWatchOutput > /dev/null",
"build:watch:copy": "ts-node build/watch.ts",
"build:watch:esm": "yarn tsc --module esnext --outDir build/esm --watch --preserveWatchOutput --pretty | grep .",
"clean": "rm -rf build/{esm,lib} && lerna run clean --parallel",
"link-all": "lerna exec -- yarn link",
"prettify": "prettier \"packages/**/*.{js,ts,tsx}\" --write",
"publish:latest": "lerna publish from-package --yes --dist-tag latest",
"publish:next": "lerna publish from-package --yes --dist-tag next",
"release:patch-latest": "yarn clean && yarn version:patch && yarn publish:latest && git push && git push --tags",
"release:prerelease-latest": "yarn clean && yarn version:prerelease && yarn publish:latest && git push && git push --tags",
"release:prerelease-next": "yarn clean && yarn version:prerelease && yarn publish:next && git push && git push --tags",
"test": "lerna run test --stream --parallel",
"test:watch": "lerna run test --stream --parallel -- --watch",
"typecheck": "tsc --noEmit",
"version:manual": "lerna version --exact --force-publish --yes --no-push",
"version:minor": "lerna version minor --exact --force-publish --yes --no-push",
"version:patch": "lerna version patch --exact --force-publish --yes --no-push",
"version:prerelease": "lerna version prerelease --exact --force-publish --yes --no-push"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"devDependencies": {
"@oclif/dev-cli": "^1",
"@oclif/test": "^1",
"@ts-tools/node": "^1.1.2",
"@types/chai": "^4.2.5",
"@types/mocha": "^5.2.7",
"@types/node": "^12.12.14",
"chai": "^4.2.0",
"chokidar": "^3.3.1",
"cross-fetch": "^3.0.6",
"husky": "^3.1.0",
"lerna": "^3.19.0",
"lint-staged": "^9.5.0",
"mocha": "^6.2.2",
"nock": "^12.0.3",
"npm-run-all": "^4.1.5",
"nyc": "^13",
"prettier": "^1.19.1",
"rimraf": "^3.0.0",
"ts-node": "^8",
"tsconfig-paths": "^3.9.0",
"typescript": "~3.7.2"
}
}