-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.43 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
{
"name": "uuid-generator-ts",
"version": "1.1.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest --coverage=true src",
"lint": "npx eslint '*/**/*.{js,ts}' --quiet",
"lint-fix": "npx eslint src/ --ext .ts --quiet --fix",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BuZZ-dEE/uuid-generator-ts.git"
},
"bugs": {
"url": "https://github.com/BuZZ-dEE/uuid-generator-ts/issues"
},
"homepage": "https://github.com/BuZZ-dEE/uuid-generator-ts#readme",
"files": [
"/dist"
],
"keywords": [
"uuid",
"guid",
"typescript"
],
"author": "Sebastian Schlatow <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.19.3",
"@babel/preset-env": "^7.18.2",
"@babel/preset-typescript": "^7.16.7",
"@types/chai": "^4.3.3",
"@types/jest": "^27.4.0",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"babel-jest": "^28.1.1",
"chai": "^4.3.6",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"typescript": "^4.7.4"
},
"lint-staged": {
"*.{md,ts}": "npx prettier --write",
"*.{js,ts}": [
"npx eslint --cache --fix"
]
}
}