generated from stephen-shopopop/node-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 1.97 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
77
78
79
80
81
82
{
"name": "@stephen-shopopop/uuidv5",
"version": "1.1.5",
"description": "generate uuidv5",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"private": false,
"engines": {
"node": ">=14.15.3",
"npm": ">=6.14.11"
},
"os": [
"darwin",
"linux",
"win32"
],
"repository": {
"type": "git",
"url": "git+https://github.com/stephen-shopopop/uuidv5.git"
},
"bugs": {
"url": "https://github.com/stephen-shopopop/uuidv5/issues"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"contributors": [
"stephen.deletang@shopopop.com"
],
"scripts": {
"start": "ts-node src/index.ts",
"test": "jest --reporters=default",
"build": "tsc --build",
"version": "npm run build",
"prepublishOnly": "npm run build",
"clean": "rimraf dist",
"lint": "ts-standard --verbose | snazzy",
"lint:fix": "ts-standard --fix",
"typecheck": "tsc --noEmit",
"release": "standard-version",
"prerelease": "standard-version -- --prerelease",
"fix": "standard-version -- --release-as minor",
"doc": "rimraf docs && npx typedoc src/index.ts"
},
"files": [
"dist"
],
"keywords": [
"uuidv5"
],
"author": "stephen-shopopop <stephen.deletang@shopopop.com>",
"license": "ISC",
"simple-git-hooks": {
"pre-commit": "npx commitlint --edit $1 & npm run lint",
"pre-push": "npm run typecheck"
},
"ts-standard": {
"ignore": [
"dist",
"docs",
"jest.config.ts",
"commitlint.config.js"
]
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@jest/globals": "^28.1.3",
"@types/node": "^18.6.3",
"jest": "^28.1.3",
"rimraf": "^3.0.2",
"simple-git-hooks": "^2.8.0",
"snazzy": "^9.0.0",
"standard-version": "^9.5.0",
"ts-jest": "^28.0.7",
"ts-node": "^10.9.1",
"ts-standard": "^11.0.0",
"typedoc": "^0.23.9",
"typescript": "^4.7.4"
},
"dependencies": {}
}