-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 838 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
{
"name": "viridium",
"version": "0.5.0",
"description": "stateless password manager",
"bin": {
"viridium": "viridium.js"
},
"scripts": {
"format": "npx prettier --write viridium.js"
},
"author": "Aria Buckles",
"license": "MIT",
"dependencies": {
"bcryptjs": "2.4.3",
"commander": "2.16.0"
},
"main": "viridium.js",
"repository": {
"type": "git",
"url": "git://github.com/ariabuckles/viridium.git"
},
"keywords": [
"bcrypt",
"stateless",
"password",
"manager"
],
"bugs": {
"url": "https://github.com/ariabuckles/viridium/issues"
},
"homepage": "https://github.com/ariabuckles/viridium",
"prettier": {
"semi": true,
"tabWidth": 4,
"singleQuote": true,
"trailingComma": "es5",
"bracketSpacing": true,
"arrowParens": "always"
}
}