-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 892 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": "wordypass",
"version": "0.0.1",
"description": "Generates passwords which read like sentences",
"author": "Nick Young <[email protected]>",
"contributors": [
{
"name": "Nick Young",
"email": "[email protected]"
}
],
"main": "src/wordypass.js",
"repository": {
"type": "git",
"url": "https://github.com/nickwb/wordypass.git"
},
"bugs": {
"url": "https://github.com/nickwb/wordypass/issues"
},
"scripts": {
"test": "mocha --compilers js:babel/register",
"start": "http-server -p 80 ."
},
"keywords": [
"password",
"generator"
],
"dependencies": {
"babel-polyfill": "^6.3.14",
"promise": "^7.1.1",
"underscore": "^1.8.3"
},
"devDependencies": {
"babel-core": "^6.3.26",
"babel-loader": "^6.2.0",
"babel-preset-es2015": "^6.3.13",
"webpack": "^1.12.9"
},
"private": true
}