-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.3 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.3 KB
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
{
"private": true,
"version": "1.0.0-2019-06-10",
"workspaces": {
"packages": [
"packages/*"
]
},
"devDependencies": {
"@types/jsdom": "^16.2.5",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"eslint": "^7.15.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-jsdoc": "^30.7.8",
"eslint-plugin-prettier": "^3.3.0",
"husky": "^4.3.6",
"jest": "^26.6.3",
"jest-junit": "^12.0.0",
"jsdom": "^16.4.0",
"lerna": "^3.22.1",
"lint-staged": "^10.5.3",
"prettier": "^2.2.0",
"rimraf": "^3.0.2",
"tslib": "^2.0.3",
"typescript": "^4.1.3"
},
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "tsc -b packages",
"lint": "eslint . --ext .tsx --ext .ts",
"prettier": "prettier --write",
"clean": "yarn rimraf ./packages/**/dist && yarn rimraf ./packages/**/tsconfig.tsbuildinfo",
"test": "jest --verbose",
"test:debug": "jest --verbose"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"git add"
]
},
"name": "furystack",
"jest-junit": {
"suiteName": "FuryStack Jest tests",
"outputDirectory": "./coverage"
},
"engines": {
"node": ">=12.0.0"
}
}