forked from paypal/paypal-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.58 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
75
76
77
78
79
80
{
"name": "@paypal/paypal-js",
"version": "3.1.4",
"description": "Client-side loader for the PayPal JS SDK",
"main": "dist/paypal.node.js",
"module": "dist/paypal.esm.js",
"types": "types/index.d.ts",
"scripts": {
"build": "rm -rf dist && rollup --config",
"lint": "eslint .",
"format": "prettier --write .",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable",
"release": "node ./scripts/publish",
"test": "jest --env=jsdom src",
"test:bundle": "jest --env=jsdom e2e-tests/bundle/**",
"test:e2e": "jest -c e2e-tests/jest.config.js",
"test:e2e:start": "serve",
"typecheck": "tsc --noEmit && tsc types/*.ts --noEmit",
"validate": "npm run typecheck && npm run build && npm run lint && npm test -- --coverage && npm run test:bundle"
},
"files": [
"dist",
"types",
"!types/**/*.test.ts"
],
"keywords": [
"paypal",
"async",
"script",
"loader",
"types",
"typescript",
"typescript-definitions"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git://github.com/paypal/paypal-js.git"
},
"devDependencies": {
"@babel/core": "^7.13.13",
"@babel/preset-env": "^7.13.12",
"@babel/preset-typescript": "^7.13.0",
"@commitlint/cli": "^12.0.1",
"@commitlint/config-conventional": "^12.0.1",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^18.0.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@rollup/plugin-replace": "^2.4.2",
"@rollup/plugin-typescript": "^8.2.1",
"@types/jest": "^26.0.22",
"@types/promise-polyfill": "^6.0.3",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"babel-jest": "^26.6.3",
"eslint": "^7.23.0",
"eslint-plugin-compat": "^3.9.0",
"filesize": "^6.1.0",
"husky": "^5.2.0",
"jest": "^26.6.3",
"jest-puppeteer": "^4.4.0",
"lint-staged": "^10.5.4",
"pinst": "^2.1.6",
"prettier": "2.2.1",
"puppeteer": "^8.0.0",
"rollup": "^2.43.1",
"rollup-plugin-filesize": "^9.1.1",
"rollup-plugin-terser": "^7.0.2",
"serve": "^11.3.2",
"shelljs": "^0.8.4",
"standard-version": "^9.1.1",
"tslib": "^2.1.0",
"typescript": "^4.2.3"
},
"dependencies": {
"promise-polyfill": "^8.2.0"
}
}