-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
110 lines (110 loc) · 2.37 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "puppeteer-page-object",
"version": "2.2.0",
"description": "Small puppeteer page object pattern implementation",
"main": "./src/index.js",
"scripts": {
"commit": "git-cz",
"lint": "eslint 'src/**/*.{js,jsx,json}'",
"lint-staged": "lint-staged",
"test": "node_modules/jest/bin/jest.js"
},
"repository": {
"type": "github",
"url": "https://github.com/lamartire/puppeteer-page-object"
},
"keywords": [
"puppeteer",
"testing",
"bdd",
"page object"
],
"author": "lamartire",
"license": "ISC",
"dependencies": {
"puppeteer": "^1.20.0"
},
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"babel-eslint": "^10.0.3",
"commitizen": "^4.0.3",
"cz-conventional-changelog": "^3.0.2",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.5.0",
"eslint-config-prettier-standard": "^3.0.1",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^3.0.9",
"jest": "24.1.0",
"lint-staged": "^9.4.3",
"poehali-config": "^0.3.0",
"prettier": "^1.19.1"
},
"lint-staged": {
"src/**/*.{js,jsx,json}": [
"eslint --fix",
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "all"
},
"eslintConfig": {
"parser": "babel-eslint",
"extends": [
"standard",
"prettier",
"prettier/standard",
"standard",
"prettier",
"prettier/standard",
"standard",
"prettier",
"prettier/standard"
],
"plugins": [
"prettier",
"prettier",
"prettier"
],
"env": {
"node": true
},
"rules": {
"prettier/prettier": [
"error",
{
"semi": false,
"singleQuote": true,
"trailingComma": "all"
}
]
}
},
"eslintIgnore": [
"/node_modules"
],
"sharec": {
"config": "poehali-config",
"version": "0.3.0"
}
}