forked from timoa/nodejs-encryption-api-example
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.3 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.3 KB
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
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "nodejs-encryption-api-example",
"version": "1.0.0",
"description": "Example of encrypting/decrypting data thru an API using node.js",
"main": "src/index.js",
"scripts": {
"start": "node src/index",
"pretest": "eslint ./src",
"test": "./node_modules/.bin/mocha --reporter spec",
"test:coverage": "./node_modules/.bin/nyc npm test",
"test:functional": "./node_modules/.bin/mocha --reporter spec ./test/functional",
"test:all": "./node_modules/.bin/run-s test:functional test:coverage",
"docker:status": "node src/healthcheck",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"repository": {
"type": "git",
"url": "git+https://github.com/timoa/nodejs-encryption-api-example.git"
},
"keywords": [
"encryption",
"api",
"endpoint",
"datastore"
],
"author": {
"name": "Damien Laureaux",
"email": "[email protected]",
"url": "https://timoa.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/timoa/nodejs-encryption-api-example/issues"
},
"homepage": "https://github.com/timoa/nodejs-encryption-api-example#readme",
"dependencies": {
"boom": "^7.3.0",
"crypto": "^1.0.1",
"fastify": "^2.15.1",
"fastify-healthcheck": "^1.0.0",
"fastify-swagger": "^1.2.0",
"http": "0.0.0",
"lodash": "^4.17.20",
"mongoose": "^5.7.5",
"snyk": "^1.316.1",
"uuid": "^3.3.2",
"winston": "^3.2.1"
},
"engines": {
"node": ">=8.0"
},
"os": [
"linux",
"win32",
"darwin"
],
"devDependencies": {
"acorn": "^6.4.1",
"acorn-jsx": "^5.0.0",
"chai": "^4.2.0",
"eslint": "^5.9.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"espree": "^4.1.0",
"mocha": "^8.1.2",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"request": "^2.88.0"
},
"nyc": {
"check-coverage": true,
"lines": 0,
"statements": 0,
"functions": 0,
"branches": 0,
"reporter": [
"lcov",
"text-summary"
],
"include": [
"src/*.js",
"src/**/*.js"
],
"exclude": [
"test/*.spec.js",
"coverage/**",
"src/swagger/*.js",
"data/**/*"
],
"all": true
},
"snyk": true
}