-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 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
{
"license": "CPAL-1.0",
"private": true,
"repository": "https://github.com/percolate/blend",
"scripts": {
"build": "lerna run build",
"clean": "lerna exec \"shx rm -rf dist/ node_modules/ tmp/\" && shx rm -rf node_modules/ tmp/",
"lerna:publish": "lerna publish from-package",
"lerna:version": "lerna version --conventional-commits --exact",
"postinstall": "cd node_modules/.bin && shx rm -f kona && shx ln -s ../../pkgs/kona/bin/kona kona"
},
"devDependencies": {
"@percolate/eslint-plugin": "link:./pkgs/eslint-plugin",
"@percolate/kona": "link:./pkgs/kona",
"@types/bluebird": "3.5.29",
"@types/docopt": "0.6.31",
"@types/eslint": "6.1.3",
"@types/fs-readdir-recursive": "1.0.0",
"@types/jest": "24.0.22",
"@types/lodash.chunk": "4.2.6",
"@types/lodash.clonedeep": "4.5.6",
"@types/lodash.isequal": "4.5.5",
"@types/lodash.template": "4.5.0",
"@types/lodash.uniq": "4.5.6",
"@types/micromatch": "3.1.0",
"@types/mime-types": "2.1.0",
"@types/node": "12.12.7",
"@types/semver": "6.2.0",
"eslint": "6.6.0",
"jest": "26.6.3",
"lerna": "5.6.2",
"prettier": "2.4.0",
"shx": "0.3.3",
"ts-jest": "26.4.4",
"typescript": "3.8.3"
},
"prettier": "@percolate/kona/configs/prettier.json",
"workspaces": [
"pkgs/*"
],
"husky": {
"hooks": {
"commit-msg": "npx kona commit preCommit"
}
},
"volta": {
"node": "14.21.3",
"yarn": "1.22.10"
}
}