-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.35 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
{
"name": "@kennanhunter/npm-package-template",
"version": "0.0.0-alpha.1",
"description": "Kennan Hunter's simple package template",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/KennanHunter/npm-package-template#readme"
},
"bugs": {
"url": "https://github.com/kennanhunter/npm-package-template/issues"
},
"homepage": "https://github.com/KennanHunter/npm-package-template/",
"author": {
"name": "Kennan Hunter",
"email": "[email protected]",
"url": "https://kennan.tech"
},
"keywords": [],
"main": "dist/index.js",
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
},
"files": [
"/dist"
],
"scripts": {
"benchmark": "yarn build && node ./dist/benchmark/index.js",
"build": "yarn clean && tsc",
"clean": "rimraf ./dist",
"execute:bin": "ts-node ./src/bin.ts",
"format": "format-package -w && prettier -w .",
"prepare": "husky install",
"test": "jest"
},
"funding": {
"type": "individual",
"url": "https://ko-fi.com/kennan"
},
"dependencies": {},
"devDependencies": {
"@types/jest": "^29.4.1",
"format-package": "^7.0.0",
"husky": "^8.0.3",
"jest": "^29.5.0",
"prettier": "^2.8.7",
"rimraf": "^5.0.0",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
}
}