-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
63 lines (63 loc) · 1.29 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "godaddy-test-tools",
"version": "17.0.1",
"description": "Gulp tools for simplifying the testing of node libraries with mocha and istanbul",
"main": "index.js",
"scripts": {
"lint": "gulp lint",
"test": "npm run lint"
},
"pre-commit": {
"run": [
"lint"
]
},
"pre-push": {
"run": [
"test"
]
},
"repository": {
"type": "git",
"url": "https://github.com/godaddy/godaddy-test-tools"
},
"keywords": [
"gulp",
"test"
],
"author": "GoDaddy",
"license": "MIT",
"engines": {
"node": ">=10.0.0"
},
"devDependencies": {
"acorn": "^6.4.2",
"cross-spawn": "^7.0.1",
"eslint": "^6.8.0",
"eslint-config-godaddy": "^5.0.0",
"eslint-plugin-json": "^2.0.1",
"eslint-plugin-mocha": "^6.2.2",
"gulp": "^4.0.2",
"mocha": "^10.1.0",
"pre-commit": "^1.2.2",
"pre-push": "^0.1.1"
},
"peerDependencies": {
"gulp": "^4.0.0",
"mocha": "*"
},
"dependencies": {
"del": "^5.1.0",
"fancy-log": "^1.3.3",
"gulp-eslint": "^6.0.0",
"gulp-sonar2": "^3.1.2",
"lodash": "^4.17.21",
"mkdirp": "^0.5.1",
"mocha-junit-reporter": "^1.23.3",
"node-notifier": "^10.0.1",
"one-time": "^1.0.0",
"rimraf": "^2.7.1",
"through2": "^3.0.1",
"yargs": "^16.2.0"
}
}