-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
61 lines (61 loc) · 1.47 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
{
"name": "jest-puppeteer-testing",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "yarn test:watch",
"test": "jest --runInBand",
"test:watch": "jest --runInBand --watch",
"commit": "git-cz",
"lint": "tslint 'tests/**/*.ts' --format stylish",
"lint:fix": "yarn lint --fix"
},
"dependencies": {
"@types/expect-puppeteer": "^3.3.1",
"@types/jest": "^24.0.15",
"@types/jest-environment-puppeteer": "^4.0.0",
"@types/jest-image-snapshot": "^2.8.0",
"@types/puppeteer": "^1.19.0",
"jest": "^24.8.0",
"jest-image-snapshot": "^2.9.0",
"jest-puppeteer": "^4.3.0",
"puppeteer": "^1.19.0"
},
"devDependencies": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"commitizen": "^4.0.3",
"cz-conventional-changelog": "3.0.2",
"husky": "^2.4.1",
"lint-staged": "^9.2.1",
"prettier": "^1.18.2",
"ts-jest": "^24.0.2",
"tslint": "^5.18.0",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^3.5.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"tests/**/*.ts": [
"tslint --fix",
"git add"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}