forked from CoderDojo/cp-users-service
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.32 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
39
40
41
42
43
44
45
46
47
48
49
{
"name": "users",
"version": "0.0.1",
"description": "Users microservice",
"main": "users.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "npm run lint && bash -c 'source ./config/development.env; ./node_modules/.bin/lab --ignore __core-js_shared__ --flat --threshold 50 -r html -o ./coverage/coverage.html -r lcov -o ./coverage/lcov.info -r json -o ./coverage/coverage.json -r lab-quieter-reporter -o stdout'",
"covrep": "bash test/covrep.sh",
"lint": "./node_modules/.bin/semistandard *.js config/config.js"
},
"pre-commit": [
"test"
],
"author": "",
"license": "ISC",
"dependencies": {
"async": "0.9.0",
"cuid": "1.2.5",
"ejs": "1.0.0",
"js-yaml": "3.2.7",
"le_node": "1.1.0",
"lodash": "3.7.0",
"moment": "2.10.3",
"newrelic": "1.19.2",
"node-uuid": "1.4.3",
"optimist": "0.6.1",
"pg": "4.4.0",
"pg-large-object": "0.0.1",
"postgrator": "2.2.0",
"request": "2.58.0",
"seneca": "0.7.2",
"seneca-auth": "0.2.10",
"seneca-mail": "0.2.1",
"seneca-postgresql-store": "1.1.2",
"seneca-user": "0.2.10",
"shortid": "2.2.2",
"xoauth2": "1.1.0"
},
"devDependencies": {
"chai": "2.2.0",
"lab": "5.15.1",
"lab-quieter-reporter": "1.0.1",
"pre-commit": "1.1.2",
"semistandard": "7.0.3"
}
}