-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.41 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.41 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
{
"name": "@benjamin-wss/cornerstone-js-utilities",
"version": "1.2.2",
"description": "A collection of utilities that I find myself writing all the time at work.",
"main": "index.js",
"types": "types/index.d.ts",
"scripts": {
"test": "npx env-cmd --environments testing jest --testPathPattern=tests",
"test:watch": "npx env-cmd --environments testing jest --watchAll --testPathPattern=tests",
"prepare": "husky install",
"build:types": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/benjamin-wss/cornerstone-js-utilities.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/benjamin-wss/cornerstone-js-utilities/issues"
},
"homepage": "https://github.com/benjamin-wss/cornerstone-js-utilities#readme",
"dependencies": {
"moment": "~2.29.4",
"yup": "~0.32.11"
},
"devDependencies": {
"@types/node": "^18.16.1",
"@types/yup": "^0.32.0",
"env-cmd": "~10.1.0",
"eslint": "~8.17.0",
"eslint-config-airbnb-base": "~15.0.0",
"eslint-config-prettier": "~8.5.0",
"eslint-plugin-import": "~2.26.0",
"eslint-plugin-jest": "~26.8.4",
"eslint-plugin-prettier": "~4.0.0",
"husky": "~8.0.1",
"jest": "~28.1.3",
"lint-staged": "~13.0.0",
"prettier": "~2.6.2",
"typescript": "~5.0.4"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
}
}