-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.79 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": "custom-uuid",
"description": "Generate string UUIDs with custom formats.",
"version": "3.0.0",
"license": "Apache-2.0",
"author": "Waveful",
"homepage": "https://github.com/Waveful/custom-uuid",
"repository": {
"type": "git",
"url": "https://github.com/Waveful/custom-uuid.git"
},
"bugs": {
"url": "https://github.com/Waveful/custom-uuid/issues"
},
"type": "commonjs",
"engines": {
"node": ">=14.17.0"
},
"main": "build/index.js",
"files": [
"build/**/*"
],
"scripts": {
"build": "rm -rf build && tsc --project .",
"prepare": "npm run build",
"preversion": "npm run lint && npm run test",
"version": "git add -A src",
"postversion": "git push && git push --tags",
"lint": "eslint .",
"test": "mocha --recursive --require ts-node/register 'test/**/*.ts'",
"coverage": "nyc --reporter=lcov --reporter=text npm run test",
"create-patch-version": "npm version patch && npm publish",
"create-minor-version": "npm version minor && npm publish",
"create-major-version": "npm version major && npm publish"
},
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/chai-as-promised": "^7.1.5",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.22",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"eslint": "^8.11.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-mocha": "^10.0.3",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-security": "^1.4.0",
"mocha": "^9.2.2",
"nyc": "^15.1.0",
"ts-node": "^10.7.0",
"typescript": "^4.6.2"
},
"keywords": [
"custom uuid",
"uuid",
"uuid generator",
"universally unique identifier",
"short uuid"
]
}