-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
68 lines (68 loc) · 1.7 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
64
65
66
67
68
{
"name": "testcafe-reporter-html",
"version": "1.4.6",
"description": "The HTML reporter for TestCafe",
"keywords": [
"testcafe",
"reporter",
"tests",
"automated",
"javascript",
"plugin",
"html"
],
"author": "PICUS <hello@picus.pt>",
"homepage": "https://github.com/picuscreative/testcafe-reporter-html",
"bugs": "https://github.com/picuscreative/testcafe-reporter-html/issues",
"repository": "git@github.com:picuscreative/testcafe-reporter-html.git",
"license": "MIT",
"main": "lib/index",
"scripts": {
"test": "cross-env NODE_ENV=test gulp build && cross-env NODE_ENV=test gulp test",
"lint": "eslint --fix ."
},
"standard-version": {
"scripts": {
"posttag": "git push --follow-tags origin master && npm publish"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"dependencies": {},
"devDependencies": {
"callsite-record": "^4.1.3",
"cross-env": "^6.0.3",
"del": "^5.1.0",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-eslint": "^6.0.0",
"gulp-mocha": "^7.0.2",
"normalize-newline": "^3.0.0",
"read-file-relative": "^1.2.0",
"testcafe": "^1.5.0",
"@babel/core": "^7.6.2",
"@babel/preset-env": "^7.6.2",
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"eslint": "^6.5.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"husky": "^4.2.3",
"lint-staged": "^9.4.2"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
}
}