-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·57 lines (57 loc) · 1.4 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
{
"name": "testcafe-reporter-elixir",
"version": "1.2.0",
"description": "Elixir custom reporter for TestCafe",
"keywords": [
"testcafe",
"reporter",
"tests",
"automated",
"javascript",
"plugin",
"html"
],
"author": "ZeleniiZmey <[email protected]>",
"homepage": "https://github.com/zeleniizmey/testcafe-reporter-elixir",
"repository": "[email protected]:zeleniizmey/testcafe-reporter-elixir.git",
"license": "MIT",
"main": "lib/index",
"scripts": {
"posttag": "git push --follow-tags origin master && npm publish",
"publish-please": "publish-please"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"dependencies": {
"callsite-record": "^4.1.3",
"cross-env": "^5.0.1",
"del": "^1.2.0",
"gulp": "^4.0.0",
"gulp-babel": "^8.0.0",
"gulp-eslint": "^5.0.0",
"gulp-mocha": "^6.0.0",
"normalize-newline": "^3.0.0",
"read-file-relative": "^1.2.0",
"testcafe": "^0.20.0"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"@commitlint/cli": "^6.1.0",
"@commitlint/config-conventional": "^6.1.0",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.11.0",
"husky": "^0.14.3",
"lint-staged": "^7.0.4"
}
}