forked from justlev/amazon-pay-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 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
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
{
"name": "amazon-pay-react",
"version": "0.8.0",
"main": "dist/index.js",
"license": "MIT",
"description": "Amazon Pay React wrapper",
"homepage": "https://github.com/doppelganger113/amazon-pay-react",
"author": {
"email": "[email protected]",
"name": "Marko Kovacevic"
},
"contributors": [
"Marko Kovacevic ([email protected])"
],
"repository": {
"type": "git",
"url": "https://github.com/doppelganger113/amazon-pay-react"
},
"bugs": {
"url": "https://github.com/doppelganger113/amazon-pay-react/issues"
},
"keywords": [
"Amazon Pay",
"Amazon Pay React",
"Amazon Pay Button",
"Amazon Pay Widget"
],
"scripts": {
"test": "./node_modules/.bin/jest",
"dev": "webpack-dev-server --mode development --open --hot",
"build": "./node_modules/.bin/babel src -d dist --presets minify --no-comments",
"lint": "./node_modules/.bin/eslint src",
"lint:fix": "./node_modules/.bin/eslint src --fix",
"prepublishOnly": "yarn build"
},
"peerDependencies": {
"react": "^16.4.2",
"react-dom": "^16.4.2"
},
"eslintConfig": {
"globals": {
"amazon": true
}
},
"jest": {
"verbose": true,
"testRegex": "(/test/.*|(.|/)(test|spec)).(js|jsx)?$"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-jest": "^23.4.2",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"babel-preset-minify": "^0.5.0-alpha.3cc09dcf",
"babel-preset-react": "^6.24.1",
"css-loader": "^1.0.0",
"eslint": "^5.3.0",
"eslint-plugin-jest": "^21.21.0",
"eslint-plugin-react": "^7.11.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^23.5.0",
"prop-types": "^15.6.2",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-router-dom": "^4.4.0-alpha.1",
"react-test-renderer": "^16.4.2",
"style-loader": "^0.22.1",
"webpack": "^4.16.5",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.5"
}
}