-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
37 lines (37 loc) · 915 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
{
"name": "zxcvbn-api",
"version": "1.1.0",
"description": "Web API wrapper to Dropbox's zxcvbn library.",
"main": "app.js",
"scripts": {
"preinstall": "npm install typings",
"postinstall": "typings install",
"start": "node ./bin/www",
"start:dev": "nodemon ./bin/www",
"test": "tap *.test.js --cov --reporter spec",
"docker:start": "docker run --name zxcvbn-api -p 3000:3000 -d wcjr/zxcvbn-api",
"docker:stop": "docker stop zxcvbn-api && docker rm zxcvbn-api"
},
"repository": {
"type": "git",
"url": "https://github.com/wcjr/zxcvbn-api"
},
"keywords": [
"zxcvbn",
"API",
"node",
"express"
],
"author": "Billy Clark",
"license": "MIT",
"dependencies": {
"body-parser": "1.15.2",
"express": "4.14.0",
"zxcvbn": "4.4.0"
},
"devDependencies": {
"nodemon": "^1.9.2",
"supertest": "^2.0.0",
"tap": "^7.1.2"
}
}