-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 961 Bytes
/
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
{
"name": "ts-randomstring",
"version": "1.0.8",
"description": "A library used for generating random strings, written in TypeScript and based on Node. ",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"prepare": "npm run build",
"version": "git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/doubletruth/ts-randomstring.git"
},
"keywords": [
"TypeScript",
"Node",
"Random String",
"Crypto"
],
"author": "doubletruth",
"license": "MIT",
"bugs": {
"url": "https://github.com/doubletruth/ts-randomstring/issues"
},
"homepage": "https://github.com/doubletruth/ts-randomstring#readme",
"devDependencies": {
"typescript": "^4.3.5"
},
"files": [
"lib/**/*"
],
"dependencies": {
"@types/node": "^16.3.1"
}
}