-
-
Notifications
You must be signed in to change notification settings - Fork 419
/
package.json
70 lines (70 loc) · 1.88 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
63
64
65
66
67
68
69
70
{
"private": true,
"license": "MIT",
"devDependencies": {
"add-stream": "^1.0.0",
"commitizen": "^3.0.5",
"conventional-changelog": "^3.0.5",
"cz-customizable": "~6.2.0",
"ejs": "^2.6.1",
"husky": "^3.0.2",
"jase": "1.2.0",
"lint-staged": "^8.1.0",
"markdox": "^0.1.10",
"prettier": "^1.15.3",
"rxjs": "^6.3.3",
"tempfile": "~3.0.0",
"tslint": "^5.11.0",
"typescript": "=3.2.4"
},
"scripts": {
"commit": "git-cz",
"cm": "git-cz",
"format": "prettier --write './*/{src,test}/**/*.{ts,tsx,js}'",
"build": "pnpm recursive run build",
"docs": "pnpm run docs-index && pnpm run docs-documentation && pnpm run docs-releases && pnpm run docs-api",
"docs-index": "node ./docs/.scripts/make-index.js",
"docs-documentation": "node ./docs/.scripts/make-documentation.js",
"docs-releases": "node ./docs/.scripts/make-releases.js",
"docs-api": "node ./docs/.scripts/make-api-index.js && pnpm recursive run docs",
"changelog": "pnpm recursive run changelog ",
"check-release": ".scripts/check-release.js",
"release-all": ".scripts/release-whatever-needs-release.sh",
"release": "run() { .scripts/release.sh $1 $2; }; run",
"lint": "pnpm recursive run lint",
"test": "pnpm recursive test ",
"test-ci": "pnpm recursive run test-ci"
},
"engines": {
"node": ">=8"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"tslint --project tsconfig.lint.json",
"git add"
],
"*.js": [
"prettier --write",
"git add"
]
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5",
"bracketSpacing": false
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
},
"cz-customizable": {
"config": "./.cz-config.js"
}
}
}