-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
81 lines (81 loc) · 2.7 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
{
"name": "ace-gdpr",
"version": "1.0.3",
"description": "GDPR compliance helper for atlas-connect-express applications",
"main": "./lib/index.js",
"scripts": {
"dev": "sleep 15 && npm run db migrate:latest && nodemon --watch . --ext js --exec \"DEBUG=true babel-node ./src/entrypoint.js\"",
"dev-local": "nodemon --watch . --ext js --exec \"DEBUG=true babel-node ./src/entrypoint.js\"",
"db": "knex",
"clean": "rimraf lib",
"test": "npm run lint && npm run cover",
"test:prod": "cross-env BABEL_ENV=production npm run test",
"test:only": "mocha --require @babel/register --require @babel/polyfill --recursive ./tests/unit/*",
"test:integration": "docker-compose up -d db && sleep 20 && mocha --require @babel/register --require @babel/polyfill --file ./tests/config/database.js --recursive ./tests/integration/* && docker-compose down",
"test:watch": "npm test -- --watch",
"test:examples": "node examples/",
"cover": "nyc --check-coverage npm run test:only",
"lint": "eslint src tests",
"build": "cross-env BABEL_ENV=production babel src --out-dir lib",
"prepare": "npm run clean && npm run lint && npm run test && npm run test:integration && npm run build"
},
"files": [
"lib",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mtmendonca/ace-gdpr.git"
},
"keywords": [
"atlassian-connect-express",
"gdpr",
"node",
"jexo"
],
"author": "Marcelo Mendonca <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mtmendonca/ace-gdpr/issues"
},
"homepage": "https://github.com/mtmendonca/ace-gdpr",
"dependencies": {
"@babel/polyfill": "^7.8.3",
"atlassian-jwt": "^1.0.2",
"date-fns": "^2.10.0",
"delay": "^4.3.0",
"lodash.defaultsdeep": "^4.6.1",
"pg": "^7.18.2",
"pg-hstore": "^2.3.3",
"regenerator-runtime": "^0.13.3",
"request": "^2.88.2",
"request-promise": "^4.2.5"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/node": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"@babel/preset-flow": "^7.8.3",
"@babel/register": "^7.8.3",
"babel-eslint": "^10.1.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"cls-hooked": "^4.2.2",
"cross-env": "^7.0.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-flowtype": "^4.6.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"flow-bin": "^0.119.1",
"knex": "^0.20.10",
"mocha": "^7.1.0",
"nodemon": "^2.0.2",
"nyc": "^15.0.0",
"rimraf": "^3.0.2",
"sequelize": "^5.21.5",
"sinon": "^9.0.0",
"sinon-chai": "^3.5.0"
}
}