-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.26 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.26 KB
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
75
76
77
78
79
{
"name": "react-monetize",
"version": "2.0.0",
"description": "Helpers and hooks to speed up your integration with Web Monetization API",
"author": "Guido Vizoso <guido.vizoso9@gmail.com>",
"license": "MIT",
"keywords": [
"react",
"monetize",
"monetization"
],
"repository": {
"type": "git",
"url": "https://github.com:guidovizoso/react-monetize.git"
},
"bugs": {
"url": "https://github.com/guidovizoso/react-monetize/issues",
"email": "guido.vizoso9@gmail.com"
},
"homepage": "https://react-monetize.now.sh",
"private": false,
"scripts": {
"build": "rollup -c",
"lint": "eslint '*/**/*.{js,ts,tsx}' --quiet --fix",
"test": "jest",
"test:watch": "jest --watch",
"docs": "cd docs && yarn dev"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && yarn test"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
],
"*.js": "eslint --cache --fix"
},
"dependencies": {},
"devDependencies": {
"@rollup/plugin-commonjs": "^12.0.0",
"@rollup/plugin-node-resolve": "^8.0.0",
"@testing-library/jest-dom": "^5.9.0",
"@testing-library/react": "^10.1.0",
"@types/jest": "^25.2.3",
"@types/react": "^16.9.35",
"@typescript-eslint/eslint-plugin": "^3.1.0",
"@typescript-eslint/parser": "^3.1.0",
"eslint": "^7.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.0",
"husky": ">=4",
"jest": "^26.0.1",
"lint-staged": ">=10",
"prettier": "^2.0.5",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"rollup": "^2.13.1",
"rollup-plugin-peer-deps-external": "^2.2.2",
"rollup-plugin-terser": "^6.1.0",
"rollup-plugin-typescript2": "^0.27.0",
"ts-jest": "^26.1.0",
"typescript": "^3.9.3"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"engines": {
"node": ">=10.12.0"
},
"main": "build/index.js",
"module": "build/index.es.js",
"files": [
"build"
]
}