-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.42 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
{
"main": "srcjs/index.js",
"private": true,
"engines": {
"node": ">=14"
},
"devDependencies": {
"@types/jest": "^26",
"@types/jquery": "^3.5.5",
"@types/lodash": "^4",
"@typescript-eslint/eslint-plugin": "^4",
"@typescript-eslint/parser": "^4",
"eslint": "^7",
"eslint-config-prettier": "^7",
"eslint-plugin-jest": "^24",
"eslint-plugin-prettier": "^3",
"husky": "^4",
"jest": "^26",
"lint-staged": "^10",
"parcel": "^1.12.3",
"parcel-bundler": "^1.12.3",
"prettier": "2",
"ts-jest": "^26",
"ts-polyfill": "^3.8.2",
"type-coverage": "^2",
"typescript": "^4"
},
"scripts": {
"build": "yarn typescript-check && parcel build -d inst/assets/js -o shinyjster.js --no-minify srcjs/index.ts",
"watch": "yarn typescript-check && parcel run -d inst/assets/js -o shinyjster.js srcjs/index.ts",
"test": "jest",
"lint": "eslint --fix --ext .ts srcjs",
"lint-check": "eslint --ext .ts srcjs",
"typescript-check": "tsc -p tsconfig.json --noEmit",
"type-check": "type-coverage -p tsconfig.json --detail --at-least 85",
"checks": "yarn typescript-check && yarn type-check && yarn lint-check"
},
"dependencies": {
"lodash": "^4",
"util-inspect": "https://github.com/deecewan/browser-util-inspect#c0b4350"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"version": "0.0.0-alpha.9009",
"files": []
}