-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
50 lines (50 loc) · 1.27 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
{
"name": "root",
"private": true,
"workspaces": {
"packages": [
"packages/*"
]
},
"author": {
"name": "Romullo",
"email": "developermarsh@gmail.com",
"url": "https://hiukky.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/hiukky/flate/issues"
},
"homepage": "https://github.com/hiukky/flate#readme",
"repository": {
"type": "git",
"url": "https://github.com/hiukky/flate"
},
"scripts": {
"prepare": "husky install",
"test": "yarn jest",
"test:cov": "yarn jest --coverage",
"posttest": "rimraf dist",
"format": "prettier --write \"**/*.ts\"",
"lint": "yarn eslint \"**/*.ts\" --fix",
"build": "lerna run build --stream"
},
"devDependencies": {
"@commitlint/cli": "^13.2.0",
"@commitlint/config-conventional": "^13.2.0",
"@types/jest": "^27.0.2",
"@types/node": "^16.10.1",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"husky": "^7.0.2",
"jest": "^27.2.3",
"lerna": "^4.0.0",
"prettier": "^2.4.1",
"ts-jest": "^27.0.5",
"typescript": "^4.4.3"
}
}