-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.53 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
55
56
57
58
59
60
61
62
{
"name": "@webeleon/npm-package-starter-typescript",
"version": "0.0.8",
"description": "starter npm package using typescript",
"main": "lib/main.js",
"types": "lib/main.d.ts",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"patch": "npm run build && npm version patch && npm publish",
"format": "prettier --write '**/*.ts'",
"build": "tsc",
"generate-doc": "typedoc",
"prepare": "husky install",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Webeleon/typecript-npm-package-starter"
},
"bugs": {
"url": "https://github.com/Webeleon/typecript-npm-package-starter/issues"
},
"contributors": [
{
"name": "Julien Prugne",
"email": "julien@webeleon.dev"
}
],
"keywords": [
"project starter",
"webeleon",
"npm",
"typescript"
],
"author": "Julien Prugne<juliene@webeleon.dev>",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "17.8.1",
"@commitlint/config-conventional": "17.8.1",
"@types/jest": "29.5.14",
"@types/sinon": "10.0.20",
"husky": "8.0.3",
"jest": "29.7.0",
"lint-staged": "14.0.1",
"prettier": "3.4.2",
"sinon": "15.2.0",
"standard-version": "9.5.0",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"typedoc": "0.27.6",
"typescript": "5.7.3"
},
"dependencies": {
"node-fetch": "3.3.2",
"query-string": "8.2.0"
},
"lint-staged": {
"*.{ts}": "prettier --write"
}
}