forked from davidcalhoun/eslint-plugin-test-selectors
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1.11 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
{
"name": "eslint-plugin-test-selectors",
"version": "1.2.8",
"description": "Makes sure test DOM attributes (e.g. data-test-id) are added to interactive DOM elements.",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"jsx",
"testing"
],
"author": "David Calhoun",
"main": "lib/index.js",
"scripts": {
"test": "mocha tests --recursive",
"lint": "eslint lib",
"patch": "npm version patch && npm publish && git push --tags && git push",
"minor": "npm version minor && npm publish && git push --tags && git push",
"major": "npm version major && npm publish && git push --tags && git push",
"npm-publish": "npm publish && git push && git push --tags",
"bump": "! npm outdated && npm update && npm audit fix && npm test || echo 'Package up to date'"
},
"dependencies": {
"jsx-ast-utils": "^3.2.0",
"nanoid": "^3.1.18",
"requireindex": "^1.2.0"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.16.0",
"mocha": "^8.2.1",
"mock-require": "^3.0.3"
},
"engines": {
"node": ">=0.10.0"
},
"license": "ISC"
}