-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.2 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
{
"name": "js-shepherd",
"version": "1.1.1",
"description": "Guide your customers to better user experiences as shepherds guide sheeps to the farmyard.",
"main": "dist/index.js",
"scripts": {
"lint": "eslint",
"lint:fix": "yarn lint --fix",
"format": "yarn prettier --check .",
"format:fix": "yarn format --write .",
"build": "node esbuild.shepherd.config.js",
"prepare": "yarn build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MarcosNASA/react-shepherd.git"
},
"author": "Marcos S.",
"license": "MIT",
"bugs": {
"url": "https://github.com/MarcosNASA/react-shepherd/issues"
},
"homepage": "https://github.com/MarcosNASA/react-shepherd#readme",
"dependencies": {},
"peerDependencies": {
"react": ">=16.12.0",
"react-dom": ">=16.12.0"
},
"devDependencies": {
"esbuild": "^0.13.12",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-testing-library": "^4.12.0",
"prettier": "^2.4.1"
}
}