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 30
/
package.json
64 lines (64 loc) · 2.05 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
{
"name": "cp-events-service",
"version": "0.0.1",
"description": "seneca microservice for events",
"main": "service.js",
"scripts": {
"lint": "semistandard *.js config/config.js",
"testdata": "node test/lib/service.js",
"test": "sh -c '. ./config/development.env; npm run lint && lab lib/controllers -P spec --ignore __core-js_shared__ '",
"coverage": "sh -c '. ./config/development.env; 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'",
"start": "node service.js",
"dev": "nodemon service.js"
},
"pre-commit": [
"test"
],
"repository": {
"type": "git",
"url": "https://github.com/CoderDojo/cp-events-service.git"
},
"author": "CoderDojo Foundation",
"license": "MIT",
"bugs": {
"url": "https://github.com/CoderDojo/community-platform/issues"
},
"devDependencies": {
"chai": "^4.0",
"lab": "14.x",
"nodemon": "1.11.0",
"pre-commit": "1.1.2",
"semistandard": "7.0.3",
"sinon": "^2.3",
"sinon-chai": "^2.14.0"
},
"dependencies": {
"async": "0.9.2",
"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.2",
"cp-translations": "^1.0.149",
"decamelize": "^2.0.0",
"ejs": "2.5.6",
"js-yaml": "3.2.7",
"json2csv": "2.11.0",
"le_node": "1.1.0",
"lodash": "4.17.10",
"moment": "2.10.3",
"newrelic": "^2.6.0",
"pg": "5.1.0",
"postgrator": "2.8.1",
"sanitize-html": "1.14.1",
"seneca": "1.4.0",
"seneca-kue": "https://github.com/wardormeur/seneca-kue.git",
"seneca-newrelic": "wardormeur/seneca-newrelic",
"seneca-postgresql-store": "2.3",
"seneca-queue": "^0.3.0",
"seneca-store-query": "0.0.5",
"shortid": "2.2.2",
"utils": "^0.3.1",
"yargs": "3.7.2"
},
"homepage": "https://github.com/CoderDojo/cp-events-service"
}