-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.21 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
{
"name": "hudson-taylor-auth",
"version": "0.1.0",
"description": "Hudson-Taylor Authentication and user management service",
"main": "lib/index.js",
"directories": {
"test": "test"
},
"dependencies": {
"async": "^0.9.0",
"chapi": "^1.0.0",
"ht-schema": "^3.0.0",
"hudson-taylor": "^6.0.0",
"mongodb": "^1.4.19",
"speakeasy": "^1.0.3",
"yub": "^0.10.8"
},
"devDependencies": {
"babel": "^5.6.4",
"bcrypt": "^0.8.0",
"coveralls": "^2.11.2",
"istanbul": "^0.3.15",
"mocha": "^2.2.5"
},
"scripts": {
"test": "npm run build && mocha -R spec --check-leaks --throw-deprecation --bail test/",
"build": "node ./node_modules/babel/bin/babel src -d lib && node ./node_modules/babel/bin/babel test-src -d test",
"coverage": "npm run build && ./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- --ui bdd --recursive -R spec -t 5000",
"push-coverage": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/hudson-taylor/ht-auth.git"
},
"author": "Adam Brady <[email protected]>",
"license": "BSD-2-Clause"
}