forked from CoderDojo/cp-users-service
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.73 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
50
51
52
53
54
55
56
57
58
59
60
{
"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 -m 5000'",
"covrep": "bash test/covrep.sh",
"lint": "./node_modules/.bin/semistandard *.js config/config.js"
},
"pre-commit": [
"test"
],
"repository": {
"type": "git",
"url": "https://github.com/CoderDojo/cp-users-service.git"
},
"author": "CoderDojo Foundation",
"license": "MIT",
"bug": {
"url": "https://github.com/CoderDojo/community-platform/issues"
},
"dependencies": {
"async": "0.9.0",
"cp-i18n-lib": "git+https://github.com/CoderDojo/cp-i18n-lib.git",
"cuid": "1.2.5",
"ejs": "1.0.0",
"jed": "1.1.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",
"po2json": "0.4.2",
"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.3",
"seneca-user": "0.2.10",
"cp-permissions-plugin": "git://github.com/CoderDojo/cp-permissions-plugin#0.0.1",
"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"
}
}