-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.61 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
48
49
50
51
52
53
54
{
"name": "boilerplate-typescript-package",
"version": "0.0.1",
"private": true,
"description": "",
"homepage": "https://github.com/jessety/boilerplate-typescript-package#readme",
"bugs": {
"url": "https://github.com/jessety/boilerplate-typescript-package/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jessety/boilerplate-typescript-package.git"
},
"license": "MIT",
"author": "Jesse Youngblood",
"type": "commonjs",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"directories": {
"lib": "lib",
"example": "example",
"test": "test"
},
"files": [
"/lib"
],
"scripts": {
"build": "npm run clean && tsc",
"clean": "rimraf lib",
"format": "sort-package-json && prettier --write '**/*.{ts,js,json,yml,md}' && eslint --fix .",
"lint": "eslint . && ec .",
"prepare": "husky install",
"release:major": "npm version major --no-commit-hooks && git push --follow-tags",
"release:minor": "npm version minor --no-commit-hooks && git push --follow-tags",
"release:patch": "npm version patch --no-commit-hooks && git push --follow-tags",
"test": "npm run build && jest"
},
"devDependencies": {
"@jessety/eslint-config": "^2.2.5",
"@jessety/prettier-config": "^1.1.0",
"@types/jest": "^27.0.2",
"@types/node": "^16.11.4",
"editorconfig-checker": "^4.0.2",
"eslint": "^8.1.0",
"husky": "^7.0.0",
"jest": "^27.0.3",
"lint-staged": "^11.2.6",
"prettier": "^2.3.0",
"rimraf": "^3.0.2",
"sort-package-json": "^1.52.0",
"ts-jest": "^27.0.1",
"typescript": "^4.1.5"
}
}