-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 1.18 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
{
"name": "harver-exercise-qa",
"version": "1.0.0",
"description": "Exercise for QA Engineers",
"main": "src/index.js",
"scripts": {
"test": "cucumber-js",
"start": "node server.js | bunyan",
"copy": "cp -r ./{api.yml,features,package.json,package-lock.json,README.md,.gitignore} build",
"doc": "redoc-cli bundle api.yml --options.nativeScrollbars --output build/docs/api.html",
"minify": "terser server.js --output build/server.js --mangle",
"clean": "rm -rf build && mkdir build",
"zip": "zip -r harver-exercise-qa.zip build",
"build": "npm run clean && npm run copy && npm run doc && npm run minify && npm run zip"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/philipmander/exercise-qa.git"
},
"author": "",
"license": "ISC",
"homepage": "https://bitbucket.org/philipmander/exercise-qa#readme",
"dependencies": {
"bunyan-sfdx-no-dtrace": "^1.8.2",
"express": "^4.17.1",
"express-openapi-validator": "^2.12.2",
"passport": "^0.4.0",
"passport-http": "^0.3.0"
},
"devDependencies": {
"@harver/bat": "^1.1.1",
"cucumber": "^6.0.3",
"redoc-cli": "^0.9.2",
"terser": "^4.3.9"
}
}