This repository has been archived by the owner on Dec 14, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
74 lines (74 loc) · 2.18 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "users",
"version": "0.0.1",
"description": "Users microservice",
"main": "users.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "npm run lint && sh -c '. ./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'",
"testdata": "node test/lib/service.js",
"covrep": "bash test/covrep.sh",
"lint": "./node_modules/.bin/semistandard *.js config/config.js",
"start": "node service.js",
"dev": "nodemon service.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",
"bcryptjs": "2.4.3",
"camelcase": "^4.1.0",
"cp-i18n-lib": "https://github.com/CoderDojo/cp-i18n-lib.git",
"cp-logs-lib": "https://github.com/CoderDojo/cp-logs-lib#1.1.0",
"cp-permissions-plugin": "https://github.com/CoderDojo/cp-permissions-plugin#1.0.5",
"cp-translations": "^1.0.149",
"decamelize": "^1.2.0",
"ejs": "1.0.0",
"jed": "1.1.0",
"js-yaml": "3.2.7",
"le_node": "1.1.0",
"lodash": "4.17.10",
"moment": "2.10.3",
"nanoid": "^1.3.3",
"newrelic": "^2.6.0",
"node-uuid": "1.4.3",
"optimist": "0.6.1",
"pg": "5.1.0",
"pg-large-object": "0.0.1",
"po2json": "0.4.2",
"postgrator": "2.8.1",
"request": "2.58.0",
"seneca": "1.4",
"seneca-auth": "1.0",
"seneca-mail": "^0.2.2",
"seneca-newrelic": "Wardormeur/seneca-newrelic",
"seneca-postgresql-store": "2.3",
"seneca-store-query": "0.0.5",
"seneca-user": "1.0",
"shortid": "2.2.2",
"util": "^0.10.3",
"xoauth2": "1.1.0"
},
"devDependencies": {
"chai": "2.2.0",
"lab": "14.x",
"lab-quieter-reporter": "1.0.1",
"nodemon": "1.11.0",
"pre-commit": "1.1.2",
"semistandard": "7.0.3",
"sinon": "^2.3.4",
"sinon-chai": "^2.11.0"
}
}