-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
44 lines (44 loc) · 961 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "vodka",
"version": "4.0.0",
"description": "A functional testing framework for web apps",
"bin": {
"vdk": "./bin/vodka"
},
"keywords": [
"test",
"testing",
"functinal test",
"restful client"
],
"author": "dreamerslab <[email protected]>",
"dependencies": {
"request": "2.88.2"
},
"devDependencies": {
"body-parser" : "1.20.2",
"express" : "4.18.2",
"method-override": "3.0.0",
"mocha" : "10.2.0",
"morgan" : "1.10.0",
"should" : "13.2.3",
"should-http" : "0.1.1"
},
"main": "index",
"repository": {
"type": "git",
"url" : "https://github.com/dreamerslab/vodka.git"
},
"engines": [
"node >= 14.0.0"
],
"licenses": [
{
"type": "MIT",
"url": "http://en.wikipedia.org/wiki/MIT_License"
}
],
"scripts": {
"test": "BASE_DIR=`pwd`/test/functional mocha --serial -R spec -t false -b"
}
}