-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.9 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
{
"name": "babel-plugin-test-ids",
"version": "1.0.0",
"description": "",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bin": {
"glob-test-ids": "./lib/glob.js"
},
"scripts": {
"build": "tsc",
"test": "jest --coverage",
"test:codecov": "codecov",
"lint": "eslint src/**/*.ts",
"cm": "git-cz",
"cm:lint": "commitlint",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/alsiola/jsx-test-ids.git"
},
"author": "Alex Young",
"license": "MIT",
"bugs": {
"url": "https://github.com/alsiola/jsx-test-ids/issues"
},
"homepage": "https://github.com/alsiola/jsx-test-ids#readme",
"dependencies": {
"commander": "^4.0.0",
"fs-extra": "^8.1.0",
"glob": "^7.1.6"
},
"peerDependencies": {
"@babel/core": "^7"
},
"devDependencies": {
"@babel/core": "^7",
"@babel/plugin-transform-react-jsx": "^7",
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@types/babel__core": "^7.1.3",
"@types/commander": "^2.12.2",
"@types/fs-extra": "^8.0.1",
"@types/glob": "^7.1.1",
"@types/jest": "^24.0.22",
"@types/node": "^12.12.6",
"@typescript-eslint/eslint-plugin": "^2.7.0",
"@typescript-eslint/parser": "^2.7.0",
"codecov": "^3.6.1",
"commitizen": "^4.0.3",
"cz-conventional-changelog": "3.0.2",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.5.0",
"husky": "^3.0.9",
"jest": "^24.9.0",
"jest-junit": "^9.0.0",
"prettier": "^1.19.0",
"ts-jest": "^24.1.0",
"typescript": "^3.7.2",
"semantic-release": "^15.13.30"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "yarn cm:lint -E HUSKY_GIT_PARAMS",
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
}
}