-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
30 lines (30 loc) · 861 Bytes
/
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
{
"name": "poc-fuzz-rest-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"format:check": "prettier --list-different \"**/*.js\"",
"format:fix": "prettier --write \"**/*.js\"",
"start": "node src/server.js",
"test": "mocha --require babel-polyfill --require babel-register \"test/**/*.js\""
},
"author": "Nicolas DUBIEN <github@dubien.org>",
"license": "MIT",
"dependencies": {
"async-middleware": "^1.2.1",
"babel-polyfill": "^6.26.0",
"body-parser": "^1.18.2",
"express": "^4.16.3",
"sqlite": "^3.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-preset-env": "^1.6.1",
"fast-check": "^1.0.0",
"mocha": "^5.1.1",
"prettier": "^1.12.1"
},
"engines" : { "node" : ">=7.0" }
}