-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 917 Bytes
/
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
{
"name": "p-block",
"version": "0.0.3",
"license": "MIT",
"author": {
"name": "Matt Hinz",
"email": "matthinz@gmail.com",
"url": "https://matthinz.com"
},
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"docs": "typedoc src/index.ts",
"lint": "eslint src",
"lint:fix": "eslint --fix src",
"test": "jest --coverage",
"test:dist": "jest --coverage --testMatch '**/*.test.js' --roots ."
},
"devDependencies": {
"@types/jest": "^29.5.1",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"eslint": "^8.39.0",
"husky": ">=6",
"jest": "^29.1.0",
"lint-staged": ">=10",
"prettier": "2.2.1",
"ts-jest": "^29.1.0",
"ts-node": "^9.1.1",
"typedoc": "^0.24.5",
"typescript": "^5.0.4"
},
"lint-staged": {
"*.{js,json,css,md}": "prettier --write",
"*.{ts}": "eslint"
}
}