-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.61 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "metaf-root",
"version": "0.0.0",
"private": true,
"description": "root package",
"author": "Ihor Chulinda <[email protected]>",
"repository": {
"type": "git",
"url": "[email protected]:Igmat/metaf.git"
},
"license": "MIT",
"scripts": {
"bootstrap": "lerna bootstrap --force-local",
"postbootstrap": "node ./scripts/createBinSymlinks.js",
"postinstall": "npm run bootstrap && npm run update:tsconfig.json",
"build": "tsc --build tsconfig.json",
"watch": "tsc --build --watch tsconfig.json",
"test": "lerna link && baset",
"test:ci": "lerna link && baset -r | tap-junit --output tests",
"accept": "baset a",
"doctoc": "doctoc README.md docs/CONTRIBUTING.md",
"prerelease": "npm run build && npm run doctoc",
"release": "lerna publish --yes",
"release:retry": "lerna publish from-package --yes",
"update:tsconfig.json": "ts-node scripts/update-package-tsconfig.ts",
"update:package.json": "ts-node scripts/update-package-json.ts",
"cz": "git-cz"
},
"devDependencies": {
"@commitlint/cli": "15.0.0",
"@commitlint/config-conventional": "15.0.0",
"@types/cross-spawn": "6.0.2",
"@types/node": "16.11.12",
"baset": "0.14.8",
"baset-baseliner-md": "0.14.8",
"baset-reader-ts": "0.14.7",
"commitizen": "4.2.4",
"cross-spawn": "7.0.3",
"cz-conventional-changelog": "3.3.0",
"doctoc": "2.1.0",
"git-url-parse": "11.6.0",
"greenkeeper-lockfile": "1.15.1",
"husky": "7.0.4",
"lerna": "4.0.0",
"lint-staged": "12.1.2",
"node-fetch": "3.1.0",
"npm-run-all": "4.1.5",
"remark-parse": "10.0.1",
"tap-junit": "5.0.1",
"ts-node": "^8.3.0",
"tslint": "6.1.3",
"typescript": "4.5.2",
"unified": "10.1.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"baset": {
"specs": "tests/*.spec.ts",
"bases": "tests/*.base",
"plugins": {
".spec.ts$": [
"baset-reader-ts",
"baset-baseliner-md"
]
}
},
"lint-staged": {
"*.ts": [
"tslint --fix --force",
"git add"
],
"*.tsx": [
"tslint --fix --force",
"git add"
]
},
"husky": {
"hooks": {
"precommit": "lint-staged",
"commitmsg": "commitlint -e $GIT_PARAMS"
}
}
}