-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 840 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": "nada-js",
"version": "0.0.2",
"description": "",
"module": "./src/index",
"main": "dist/index.js",
"files": [
"dist/**/index.js",
"dist/**/index.js.map",
"dist/**/index.d.ts"
],
"scripts": {
"test": "jest",
"build": "rm -rf ./dist && tsc",
"prepublishOnly": "yarn test && yarn build"
},
"keywords": [],
"author": "Michael Katz aka @silicakes",
"license": "MIT",
"devDependencies": {
"@types/jest": "^28.1.7",
"@typescript-eslint/parser": "^5.33.1",
"eslint": "^8.22.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"husky": "^8.0.1",
"jest": "^28.1.3",
"ts-jest": "^28.0.8",
"typescript": "^4.7.4",
"webpack": "^5.74.0"
},
"husky": {
"hooks": {
"pre-commit": "scripts/pre-commit.sh"
}
}
}