-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 957 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 957 Bytes
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
{
"name": "noje-js-from-book",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "cross-env NODE_ENV=test mocha './{,!(node_modules)/**}/*.test.js'",
"lint": "npx eslint **/*.js"
},
"bin": {
"encrypt": "./cli_examples/bin/encrypt.js",
"decrypt": "./cli_examples/bin/decrypt.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"dotenv": "^16.3.1",
"ejs": "^3.1.9",
"express": "^4.18.2",
"http": "^0.0.1-security",
"lodash": "^4.1.0",
"mocha": "^10.2.0",
"morgan": "^1.10.0",
"mysql": "^2.18.1",
"request": "^2.88.2"
},
"devDependencies": {
"@babel/eslint-parser": "^7.22.15",
"chai": "^4.3.10",
"cross-env": "^7.0.3",
"eslint": "^8.52.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.0",
"nock": "^13.3.7",
"node-fetch": "^3.3.2",
"sinon": "^17.0.0",
"supertest": "^6.3.3"
}
}