-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
50 lines (50 loc) · 1.08 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": "ts-pwgen",
"version": "1.2.2",
"description": "A command line password generator in TypeScript",
"main": "lib/dest/main.js",
"bin": {
"pwgen": "./bin/pwgen"
},
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"build": "tsc",
"format": "prettier --write \"lib/src/*.ts\""
},
"keywords": [
"password",
"generator",
"typescript",
"passwordgenerator"
],
"author": "Patrick Muff",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/dislick/ts-pwgen"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/colors": "^1.2.1",
"@types/copy-paste": "^1.1.30",
"@types/inquirer": "6.0.3",
"@types/jest": "^25.2.1",
"@types/node": "^12.0.10",
"jest": "^25.5.4",
"prettier": "^2.0.5",
"ts-jest": "^25.5.1",
"typescript": "^3.9.2"
},
"dependencies": {
"colors": "^1.3.3",
"copy-paste": "^1.3.0",
"inquirer": "^6.4.1",
"yargs": "^13.2.4"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"rootDir": "lib/src"
}
}