-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.24 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
{
"name": "@zlanguage/monorepo",
"homepage": "https://github.com/zlanguage/zcomp",
"repository": {
"type": "git",
"url": "https://github.com/zlanguage/zcomp.git"
},
"license": "MIT",
"scripts": {
"build": "yarn lerna run build",
"clean": "rimraf packages/**/lib",
"lerna": "lerna",
"lint": "eslint packages/**/*.js",
"prettier": "prettier --write **/*.{js,json,md}",
"test": "jest",
"bootstrap": "lerna bootstrap"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick"
}
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.1",
"@babel/plugin-proposal-optional-chaining": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@types/jest": "^26.0.14",
"@zlanguage/zstdlib": "^0.4.1",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.0",
"eslint": "^7.11.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-jest": "^24.1.0",
"husky": "^4.3.0",
"jest": "^26.6.0",
"lerna": "^3.22.1",
"prettier": "^2.1.2",
"pretty-quick": "^3.1.0",
"rimraf": "^3.0.2"
},
"engines": {
"node": ">=10.0.0"
}
}