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 36
/
Copy pathpackage.json
83 lines (83 loc) · 2.56 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
75
76
77
78
79
80
81
82
83
{
"name": "dojos-service",
"version": "0.0.1",
"description": "Seneca microservice for dojos",
"main": "service.js",
"directories": {
"test": "test"
},
"scripts": {
"start": "node service.js",
"dev": "nodemon service.js",
"lint": "./node_modules/.bin/semistandard *.js config/config.js",
"test": "sh -c '. ./config/development.env; ./node_modules/.bin/lab lib/controllers -P spec --ignore __core-js_shared__ '",
"testdata": "node test/lib/service.js",
"legacytest": "sh -c '. ./config/development.env; npm run lint && ./node_modules/.bin/lab --ignore __core-js_shared__ --flat'",
"coverage": "sh -c '. ./config/development.env; ./node_modules/.bin/lab --threshold 68 -r html -o ./coverage/coverage.html -r lcov -o ./coverage/lcov.info -r json -o ./coverage/coverage.json -r console -o stdout'",
"covrep": "sh test/covrep.sh"
},
"pre-commit": [
"test"
],
"repository": {
"type": "git",
"url": "git://github.com/CoderDojo/cp-dojos-service.git"
},
"author": "CoderDojo Foundation",
"license": "MIT",
"bugs": {
"url": "https://github.com/CoderDojo/community-platform/issues"
},
"devDependencies": {
"chai": "2.2.0",
"chai-moment": "^0.1.0",
"lab": "14.x",
"nodemon": "1.11.0",
"pre-commit": "1.0.7",
"semistandard": "7.0.3",
"sinon": "1.16.1"
},
"dependencies": {
"async": "0.9.2",
"camelcase": "^4.1.0",
"countries-list": "1.0.3",
"cp-i18n-lib": "CoderDojo/cp-i18n-lib#remove-global-store",
"cp-logs-lib": "CoderDojo/cp-logs-lib#1.1.0",
"cp-permissions-plugin": "CoderDojo/cp-permissions-plugin#1.0.4",
"cp-translations": "^1.0.167",
"csvtojson": "^1.0.2",
"debug": "2.2.0",
"decamelize": "^1.2.0",
"ejs": "1.0.0",
"googleapis": "2.0.5",
"isoc": "0.0.1",
"jed": "1.1.0",
"js-yaml": "3.2.7",
"json2csv": "2.11.0",
"limax": "~1.2.0",
"lodash": "^4.6",
"moment": "2.10.3",
"newrelic": "2.4.2",
"node-geocoder": "^3.22",
"pg": "5.1.0",
"phoneformat.js": "^1.0.3",
"pkgcloud": "^1.5.0",
"po2json": "0.4.2",
"postgrator": "2.8.1",
"randomstring": "1.0.6",
"request": "2.55.0",
"sanitize-html": "1.15.0",
"seneca": "1.4.0",
"seneca-kue": "wardormeur/seneca-kue",
"seneca-mail": "0.2.2",
"seneca-newrelic": "https://github.com/wardormeur/seneca-newrelic",
"seneca-postgresql-store": "2.3",
"seneca-queue": "^0.3.0",
"seneca-store-query": "0.0.5",
"shortid": "2.2.2",
"twilio": "~2.9.1",
"util": "^0.10.3",
"xoauth2": "1.1.0",
"yargs": "3.7.2"
}
}