-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
82 lines (82 loc) · 2.69 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
{
"name": "twig-api",
"version": "3.5.0",
"description": "The API that powers Twig",
"scripts": {
"lint": "eslint src test",
"security": "nsp check",
"start": "nodemon -r dotenv-safe/config --inspect --watch src --ignore '*.unit.js' --ignore '*.e2e.js' src/server.js",
"test": "mocha --watch --require co-mocha --recursive test/unit **/*.unit.js",
"test:ci": "nyc --reporter=html --reporter=cobertura --reporter=lcov --report-dir=reports mocha --exit --require co-mocha --recursive --reporter mocha-jenkins-reporter -O junit_report_path=./reports/test-results.xml,junit_report_stack=1 test/unit **/*.unit.js",
"test:e2e": "mocha --recursive test/e2e **/*.e2e.js",
"test:e2e:ci": "mocha --timeout 10000 --recursive --reporter mocha-jenkins-reporter -O junit_report_path=./reports/e2e-test-results.xml,junit_report_name=\"Acceptance Tests\",junit_report_stack=1 test/e2e **/*.e2e.js",
"validate": "npm ls",
"version": "git add package.json",
"postversion": "git push && git push origin HEAD:master && git push --tags",
"postinstall": "check-node-version --node ${npm_package_engines_node}"
},
"author": "Buildit",
"main": "src/server.js",
"repository": {
"type": "git",
"url": "[email protected]:buildit/twig-api.git"
},
"engines": {
"node": "^10.15.0"
},
"bugs": "https://trello.com/b/gvh3zIcI/twig",
"license": "Apache-2.0",
"devDependencies": {
"chai": "4.2.0",
"chai-http": "^4.3.0",
"chai-string": "1.5.0",
"chai-subset": "1.6.0",
"check-node-version": "^3.3.0",
"co-mocha": "1.2.2",
"dotenv-safe": "6.1.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "13.1.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-node": "8.0.1",
"mocha": "^6.1.4",
"mocha-jenkins-reporter": "0.4.1",
"mochawesome": "^3.1.2",
"nodemon": "^1.18.11",
"nsp": "3.2.1",
"nyc": "^14.0.0",
"pre-commit": "1.2.2",
"pre-push": "0.1.1",
"sinon": "^7.3.2"
},
"dependencies": {
"@hapi/boom": "^7.4.2",
"@hapi/cookie": "^10.1.0",
"@hapi/hapi": "^18.3.1",
"@hapi/inert": "^5.2.0",
"@hapi/joi": "^15.0.0",
"@hapi/vision": "^5.5.2",
"continuation-local-storage": "3.2.1",
"dynogels": "9.0.0",
"hapi-swagger": "^9.4.2",
"http-status-codes": "^1.3.2",
"jsonwebtoken": "^8.5.1",
"ldapjs": "1.0.2",
"pouchdb": "7.0.0",
"ramda": "0.26.1",
"request": "2.88.0",
"request-promise": "^4.2.4",
"restler": "3.4.0",
"semver": "^6.0.0",
"utils-error-to-json": "^1.0.0",
"uuid": "3.3.2",
"winston": "^3.2.1",
"winston-daily-rotate-file": "^3.9.0"
},
"pre-commit": [
"lint"
],
"pre-push": [
"test:ci",
"test:e2e:ci"
]
}