-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
45 lines (45 loc) · 1.01 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
37
38
39
40
41
42
43
44
45
{
"name": "testbox-runner",
"version": "0.5.0",
"description": "Runs Testbox tests via the command line",
"homepage": "https://github.com/seancoyne/testbox-runner",
"bugs": "https://github.com/seancoyne/testbox-runner/issues",
"preferGlobal": true,
"main": "index.js",
"bin": {
"testbox-runner": "./index.js"
},
"directories": {
"lib": "./lib"
},
"repository": {
"type": "git",
"url": "https://github.com/seancoyne/testbox-runner.git"
},
"scripts": {
"test": "jest",
"lint": "gulp lint"
},
"keywords": [
"testbox",
"coldfusion",
"testing",
"test runner"
],
"author": "Sean Coyne <sean@n42designs.com> (http://www.n42designs.com/)",
"license": "MIT",
"dependencies": {
"chalk": "1.0.0",
"cli-table": "0.3.1",
"rc": "0.5.5",
"request": "2.51.0",
"validator": "3.28.0"
},
"devDependencies": {
"gulp": "^3.8.11",
"gulp-jshint": "^1.9.0",
"jest": "^28.1.1",
"jshint": "^2.6.0",
"jshint-stylish": "^1.0.0"
}
}