-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.98 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
63
64
65
66
67
68
{
"author": {
"name": "Brad Garropy",
"email": "[email protected]",
"url": "https://bradgarropy.com"
},
"bugs": {
"url": "https://github.com/bradgarropy/node-library-starter/issues"
},
"description": "🟢 node library starter",
"devDependencies": {
"@bradgarropy/eslint-config": "^1.1.0",
"@bradgarropy/eslint-config-typescript": "^1.0.0",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"@vitest/coverage-istanbul": "^0.34.1",
"all-contributors-cli": "^6.20.0",
"babel-eslint": "^10.1.0",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"husky": "^4.3.8",
"lint-staged": "^10.5.4",
"prettier": "^3.0.1",
"typescript": "^5.1.6",
"vite-tsconfig-paths": "^4.2.0",
"vitest": "^0.34.1"
},
"engines": {
"node": ">=10"
},
"files": [
"dist"
],
"homepage": "https://github.com/bradgarropy/node-library-starter",
"keywords": [
"node",
"typescript",
"eslint",
"prettier",
"vitest",
"starter",
"hacktoberfest"
],
"license": "MIT",
"main": "dist/index.js",
"name": "@bradgarropy/node-library-starter",
"repository": {
"type": "git",
"url": "https://github.com/bradgarropy/node-library-starter"
},
"scripts": {
"start": "tsc --watch",
"build": "tsc",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"typecheck": "tsc",
"test": "vitest --coverage",
"test:watch": "vitest --coverage --watch",
"contributors": "all-contributors generate",
"prepare": "npm run build"
},
"type": "module",
"types": "dist/types/index.d.ts",
"version": "1.6.0"
}