-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
70 lines (70 loc) · 1.84 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
{
"name": "babel-plugin-react-add-data-attribute",
"version": "1.1.0",
"description": "babel plugin to add data-test attribute to react components",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/davidgustys/babel-plugin-react-add-data-attribute.git"
},
"author": "David Gustys <[email protected]> (https://davidgustys.com)",
"files": [
"dest"
],
"main": "dest/index.js",
"types": "dest/index.d.ts",
"keywords": [
"babel",
"babel plugin",
"react",
"data-test",
"styled-components",
"components"
],
"engines": {
"node": ">=10"
},
"scripts": {
"prebuild": "del dest",
"build": "tsc",
"prepublish": "npm build && del dest/**/*.test.*",
"fmt": "prettier --write .",
"lint": "eslint src/**/*.ts",
"test": "jest",
"test:ci": "jest --coverage --ci --runInBand"
},
"dependencies": {
"@babel/core": "^7.12.9",
"@babel/types": "^7.12.7"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"devDependencies": {
"@types/babel-types": "^7.0.9",
"@types/jest": "^26.0.18",
"@types/node": "^14.14.11",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"babel-log": "^2.0.0",
"babel-plugin-tester": "^10.0.0",
"babel-types": "^6.26.0",
"del-cli": "^3.0.1",
"eslint": "^7.15.0",
"eslint-config-alloy": "^3.8.2",
"eslint-config-precure": "^5.4.0",
"eslint-plugin-react": "^7.21.5",
"husky": "^4.3.5",
"jest": "^26.6.3",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"ts-jest": "^26.4.4",
"typescript": "^4.1.2"
},
"bugs": {
"url": "https://github.com/davidgustys/babel-plugin-react-add-data-attribute/issues"
},
"homepage": "https://github.com/davidgustys/babel-plugin-react-add-data-attribute#readme"
}