-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
65 lines (65 loc) · 1.88 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
{
"name": "react-payment-request-api",
"version": "3.1.0",
"description": "React high order component that expose the payment request api",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"clean": "rm -rf ./lib && rm -rf ./dist",
"build:lib": "tsc",
"build:dist": "rollup -c",
"build": "npm run build:lib && npm run build:dist",
"lint": "tslint -c ./tslint.json './src/**/*.{ts,tsx}'",
"test": "jest --config jest.json",
"test:watch": "jest --config jest.json --watch",
"prepublish": "npm run clean && npm run lint && npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/marcolanaro/react-payment-request-api.git"
},
"bugs": {
"url": "https://github.com/marcolanaro/react-payment-request-api/issues"
},
"homepage": "https://github.com/marcolanaro/react-payment-request-api",
"keywords": [
"react",
"component",
"payment-request",
"android-pay",
"high-order",
"typescript"
],
"author": "Marco Lanaro <[email protected]> (https://github.com/marcolanaro)",
"license": "MIT",
"devDependencies": {
"@types/enzyme": "^3.1.14",
"@types/jest": "^23.3.2",
"@types/react": "^16.4.14",
"@types/react-dom": "^16.0.7",
"enzyme": "^3.6.0",
"enzyme-adapter-react-16": "^1.5.0",
"jest": "^23.6.0",
"pre-commit": "^1.2.2",
"react-test-renderer": "^16.5.2",
"rollup": "^0.50.0",
"rollup-plugin-typescript2": "^0.7.0",
"rollup-plugin-uglify": "^2.0.1",
"source-map-loader": "^0.2.4",
"ts-jest": "^23.10.1",
"ts-loader": "^5.2.1",
"tslint": "^5.11.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-microsoft-contrib": "^5.2.1",
"tslint-react": "^3.6.0",
"typescript": "^3.0.3"
},
"dependencies": {
"react": "^16.5.2",
"react-dom": "^16.5.2"
},
"pre-commit": [
"lint",
"build"
]
}