-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
47 lines (47 loc) · 1.33 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
{
"name": "ts-npm-package-boilerplate",
"version": "0.2.5",
"description": "TypeScript NPM Module Boilerplate",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"format": "prettier --write \"src/**/*.(js|ts)\"",
"lint": "eslint src --ext .js,.ts",
"lint:fix": "eslint src --fix --ext .js,.ts",
"test": "jest --config jest.config.js",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hebertcisco/ts-npm-package-boilerplate.git"
},
"keywords": [
"boilerplate",
"typescript"
],
"author": "Hebert Cisco",
"license": "MIT",
"bugs": {
"url": "https://github.com/hebertcisco/ts-npm-package-boilerplate/issues"
},
"homepage": "https://github.com/hebertcisco/ts-npm-package-boilerplate#readme",
"devDependencies": {
"@types/jest": "29.4.0",
"@typescript-eslint/eslint-plugin": "5.54.0",
"@typescript-eslint/parser": "5.52.0",
"eslint": "8.35.0",
"eslint-plugin-jest": "27.2.1",
"jest": "29.4.3",
"prettier": "2.8.4",
"ts-jest": "29.0.5",
"typescript": "4.9.5"
},
"files": [
"lib/**/*"
]
}