-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
60 lines (60 loc) · 1.54 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
{
"name": "react-smart-payment-buttons",
"version": "0.2.3",
"description": "React integration for PayPal's Smart Payment Buttons.",
"main": "lib/index.js",
"repository": "https://github.com/erksch/react-smart-payment-buttons.git",
"author": "Erik Ziegler <[email protected]>",
"license": "MIT",
"keywords": [
"react",
"paypal",
"smart payment buttons",
"spb"
],
"files": [
"lib"
],
"scripts": {
"build": "babel src/ -d lib/",
"prepare": "yarn build",
"test": "jest",
"lint": "eslint src tests"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint",
"pre-push": "yarn lint && yarn test"
}
},
"dependencies": {
"humps": "^2.0.1",
"query-string": "^6.4.0",
"react": "^16.8.5",
"react-dom": "^16.8.5"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.4.0",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/preset-env": "^7.4.2",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@react-mock/state": "^0.1.8",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.5.0",
"coveralls": "^3.0.3",
"eslint": "^5.15.3",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-flowtype": "^3.4.2",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jest": "^22.4.1",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"flow-bin": "^0.95.1",
"flow-typed": "^2.5.1",
"husky": "^1.3.1",
"jest": "^24.5.0",
"react-testing-library": "^6.0.3"
}
}