-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.2 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
{
"name": "@homebound/activesupport",
"version": "1.1.0-alpha.1",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"repository": "[email protected]:homebound-team/activesupport.git",
"license": "MIT",
"packageManager": "[email protected]",
"scripts": {
"build": "tsup",
"lint": "eslint --ext js,ts,tsx src",
"lint:fix": "eslint --ext js,ts,tsx --fix src",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable",
"test": "jest"
},
"devDependencies": {
"@homebound/eslint-config": "^1.10.0",
"@types/jest": "^29.5.1",
"conventional-changelog-conventionalcommits": "^5.0.0",
"eslint": "^8.52.0",
"husky": ">=6",
"jest": "^29.5.0",
"jest-junit": "^16.0.0",
"lint-staged": ">=10",
"pinst": ">=2",
"prettier": "^2.8.8",
"prettier-plugin-organize-imports": "^3.2.2",
"semantic-release": "^21.0.2",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"tsup": "^6.7.0",
"typescript": "^5.0.4"
},
"lint-staged": {
"*.{js,ts,css,md}": "prettier --write",
"*.{js,ts,tsx}": "eslint --fix"
},
"dependencies": {
"temporal-polyfill": "^0.2.4"
}
}