-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 loc) · 2.37 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
69
70
71
72
73
74
75
76
{
"name": "lifecycle-utils",
"version": "0.1.0",
"description": "A set of general utilities for the lifecycle of a JS/TS project/library",
"main": "dist/index.js",
"type": "module",
"types": "./dist/index.d.ts",
"files": [
"dist/",
"package.json",
"README.md",
"LICENSE"
],
"exports": {
".": {
"import": "./dist/index.js",
"node": "./dist/index.js",
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"scripts": {
"prepare": "[ \"$CI\" = true ] || [ -d '.husky/_' ] || husky install",
"prebuild": "rimraf ./dist ./tsconfig.tsbuildinfo",
"build": "tsc --build tsconfig.json --force",
"prewatch": "rimraf ./dist ./tsconfig.tsbuildinfo",
"watch": "tsc --build tsconfig.json --watch --force",
"test": "npm run test:typescript && npm run lint:eslint && npm run test:vitest",
"test:vitest": "vitest run ./test",
"test:vitest:interactive": "vitest watch ./test",
"test:typescript": "tsc --build tsconfig.json --dry --force",
"lint": "npm run lint:eslint",
"lint:eslint": "eslint --ext .js --ext .ts .",
"format": "npm run lint:eslint -- --fix",
"clean": "rm -rf ./node_modules ./dist ./tsconfig.tsbuildinfo",
"docs:build": "typedoc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/giladgd/lifecycle-utils.git"
},
"keywords": [
"utils",
"lifecycle",
"typescript"
],
"author": "Gilad S.",
"license": "MIT",
"bugs": {
"url": "https://github.com/giladgd/lifecycle-utils/issues"
},
"homepage": "https://giladgd.github.io/lifecycle-utils/",
"dependencies": {},
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@semantic-release/exec": "^6.0.3",
"@types/node": "^20.8.4",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"@vitest/coverage-v8": "^0.34.6",
"eslint": "^8.46.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-jsdoc": "^46.9.0",
"eslint-plugin-node": "github:giladgd/eslint-plugin-node#dev/giladgd/fixImportExtentionFixingInTypeScript",
"husky": "^8.0.3",
"rimraf": "^5.0.1",
"semantic-release": "^21.0.7",
"ts-node": "^10.9.1",
"tslib": "^2.6.1",
"typedoc": "^0.25.1",
"typedoc-plugin-mdn-links": "^3.1.0",
"typescript": "^5.1.6",
"vitest": "^0.34.6"
}
}