-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
132 lines (132 loc) · 3.9 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "@power-elements/stripe-elements",
"version": "3.3.0",
"description": "Web Component wrapper for stripe elements",
"type": "module",
"main": "index.js",
"module": "index.js",
"customElements": "custom-elements.json",
"directories": {
"test": "test"
},
"exports": {
".": {
"esbuild": "./src/index.ts",
"default": "./index.js"
},
"./*": {
"esbuild": "./src/*.ts",
"default": "./*.js"
},
"./*.js": {
"esbuild": "./src/*.ts",
"default": "./*.js"
}
},
"scripts": {
"postinstall": "patch-package",
"prepare": "npm run build",
"build": "run-p build:**",
"build:types": "tsc --emitDeclarationOnly && cp src/*.d.ts . && cp src/lib/*.d.ts ./lib/",
"build:esbuild": "node scripts/build.js",
"build:analyze": "cem analyze",
"docs": "eleventy --incremental",
"start": "eleventy --incremental --watch --serve",
"clean": "run-s clean:*",
"clean:src": "rimraf '{src,test,lib}/**/!(global).{js,js.map,d.ts}'",
"clean:index": "rimraf './!(*.config|web-*).{js,js.map,d.ts}'",
"lint": "eslint src/**/*.ts",
"test": "wtr --coverage",
"test:watch": "wtr --watch",
"update": "npm-check -u",
"watch": "run-p watch:*",
"watch:compile": "tsc -w",
"watch:build": "rollup -cw"
},
"repository": {
"type": "git",
"url": "https://github.com/bennypowers/stripe-elements.git"
},
"files": [
"*.d.ts",
"*.js",
"*.js.map",
"lib/*",
"custom-elements.json",
"CHANGELOG.md",
"README.md"
],
"types": "index.d.ts",
"keywords": [
"web-components",
"lit-element",
"lit-element-2.0",
"stripe",
"payment",
"payment-request",
"payment request api"
],
"author": "Benny Powers <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/bennypowers/stripe-elements/issues"
},
"homepage": "https://bennypowers.dev/stripe-elements",
"devDependencies": {
"@11ty/eleventy": "^2.0.0",
"@11ty/eleventy-plugin-directory-output": "^1.0.1",
"@11ty/eleventy-plugin-syntaxhighlight": "^4.0.0",
"@custom-elements-manifest/analyzer": "^0.5.7",
"@custom-elements-manifest/to-markdown": "^0.1.0",
"@lit-labs/ssr": "^2.0.2",
"@material/mwc-button": "^0.25.3",
"@material/mwc-dialog": "^0.25.3",
"@material/mwc-textfield": "^0.25.3",
"@open-wc/testing": "^3.0.4",
"@open-wc/testing-karma": "^4.0.9",
"@orchidjs/eleventy-plugin-ids": "^0.1.1",
"@power-elements/codesandbox-button": "^0.1.0",
"@power-elements/json-viewer": "^2.1.1",
"@pwrs/eslint-config": "^0.0.25",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-typescript": "^8.3.0",
"@types/credit-card-type": "^9.0.0",
"@types/express": "^4.17.13",
"@types/express-serve-static-core": "^4.17.28",
"@types/sinon": "^10.0.11",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@web/dev-server-esbuild": "^0.2.16",
"@web/test-runner": "^0.13.27",
"cem-plugin-module-file-extensions": "^0.0.2",
"credit-card-type": "^9.1.0",
"eleventy-plugin-toc": "^1.1.5",
"esbuild": "^0.14.21",
"esbuild-plugin-lit-css": "^1.2.3",
"eslint": "^8.9.0",
"execa": "^6.1.0",
"husky": "^7.0.4",
"luhn-js": "^1.1.2",
"markdown-it-anchor": "^8.4.1",
"npm-check": "^6.0.1",
"npm-run-all": "^4.1.5",
"rollup": "^2.67.2",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-lit-css": "^3.2.1",
"sinon": "^13.0.1",
"stylelint": "^14.5.0",
"stylelint-config-standard": "^25.0.0",
"typescript": "^4.5.5",
"typescript-lit-html-plugin": "^0.9.0"
},
"dependencies": {
"@lavadrop/camel-case": "^0.4.0",
"@lavadrop/kebab-case": "^3.0.0",
"@pacote/memoize": "^1.1.6",
"@stripe/stripe-js": "^1.23.0",
"lit": "^2.1.3",
"patch-package": "^6.4.7",
"tslib": "^2.3.1"
}
}