-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.27 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
{
"name": "@pashword/pashword-lib",
"version": "0.1.11",
"description": "Pashword generation library",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"format": "prettier --write \"src/**/*.(js|ts)\"",
"lint": "eslint src --ext .js,.ts",
"lint:fix": "eslint src --fix --ext .js,.ts",
"prepare": "npm run build",
"prepublishOnly": "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/pashword/pashword-lib.git"
},
"keywords": [
"password",
"pashword",
"cryptography"
],
"author": "Pashword",
"license": "SEE LICENSE IN LICENSE.MD",
"bugs": {
"url": "https://github.com/pashword/pashword-lib.git/issues"
},
"homepage": "https://github.com/pashword/pashword-lib.git#readme",
"devDependencies": {
"@types/debug": "^4.1.7",
"@typescript-eslint/eslint-plugin": "5.30.7",
"@typescript-eslint/parser": "5.30.7",
"eslint": "8.20.0",
"prettier": "2.7.1",
"typescript": "4.7.4"
},
"files": [
"lib/**/*"
],
"dependencies": {
"debug": "^4.3.4",
"jssha": "^3.2.0",
"scrypt-js": "^3.0.1"
}
}