-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 992 Bytes
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 992 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
40
41
{
"name": "nodesense-core",
"version": "1.0.0",
"description": "Nodejs event driven framework",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/nachmo5/nodesense-core.git"
},
"author": "Mohamed Nachit",
"license": "ISC",
"dependencies": {
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"express": "^4.17.1",
"helmet": "^3.20.0",
"method-override": "^3.0.0"
},
"scripts": {
"dev": "npx babel-node src/index.js",
"test": "jest"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"@babel/core": "^7.8.6",
"@babel/node": "^7.8.4",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.8.6",
"eslint": "^6.8.0",
"eslint-config-node": "^4.0.0",
"eslint-plugin-babel": "^5.3.0",
"jest": "^25.3.0"
},
"jest": {
"testMatch": [
"**/tests/**/*.[jt]s?(x)",
"**/?(*.)+(spec|test).[jt]s?(x)"
]
}
}