forked from shimaore/password
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 795 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
{
"name": "password",
"version": "0.1.1",
"description": "Memorable passwords generator",
"license": "UNLICENSE",
"keywords": [
"password",
"generator"
],
"author": {
"name": "Stephane Alnet",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/shimaore/password.git"
},
"homepage": "https://github.com/shimaore/password",
"main": "lib/password.js",
"files": [
"lib/password.js",
"lib/wordlist.json"
],
"scripts": {
"prepublish": "coffee -c lib/password.coffee",
"test": "mocha --compilers coffee:coffee-script/register --reporter spec"
},
"private": false,
"ok": true,
"devDependencies": {
"coffee-script": "^1.8.0",
"mocha": "^1.21.4",
"should": "^4.0.4"
}
}