-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.35 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
{
"name": "uuid-base58",
"version": "1.3.0",
"description": "Generate a RFC4122 compliant v4 UUID and return it encoded in base-58.",
"scripts": {
"test": "jest",
"build": "npm run tsc",
"tsc": "tsc -p tsconfig.json && tsc -p tsconfig-cjs.json",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cbschuld/uuid-base58.git"
},
"keywords": [
"base58",
"uuid",
"encoding",
"decoding",
"uuid v4"
],
"author": "Chris Schuld <cbschuld@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/cbschuld/uuid-base58/issues"
},
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "lib/esm/index.d.ts",
"files": [
"lib/**/*"
],
"homepage": "https://github.com/cbschuld/uuid-base58#readme",
"devDependencies": {
"@types/jest": "^29.2.4",
"jest": "^29.3.1",
"prettier": "^2.8.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"tslint": "^6.1.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.9.4"
}
}