-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1010 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
40
41
42
43
{
"name": "csprsg",
"version": "1.0.5",
"description": "Creates cryptographically secure pseudo random strings",
"keywords": [
"crypto",
"secure",
"psuedo",
"random",
"string",
"typed",
"async",
"await"
],
"homepage": "https://github.com/ryanstaniforth/csprsg",
"author": "Ryan Staniforth",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:ryanstaniforth/csprsg.git"
},
"main": "build/index.js",
"scripts": {
"clean": "rm -rf node_modules build",
"build": "tsc",
"build:watch": "tsc --watch",
"test": "jest",
"test:watch": "jest --watchAll",
"lint": "tslint -p .",
"prepublishOnly": "npm run clean && npm install && npm run build && npm run test && npm run lint"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/node": "^14.14.22",
"jest": "^26.6.3",
"ts-jest": "^26.4.4",
"tslint": "^6.1.3",
"typescript": "^4.1.3"
},
"files": [
"build/**/*"
]
}