-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
43 lines (43 loc) · 979 Bytes
/
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
{
"name": "nuxt-stripe-module",
"version": "3.2.0",
"description": "NuxtJS module for Stripe.js",
"license": "MIT",
"contributors": [
{
"name": "WilliamDASILVA <[email protected]>"
}
],
"main": "lib/module.js",
"repository": "https://github.com/WilliamDASILVA/nuxt-stripe-module",
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "nuxt test/fixture",
"lint": "eslint lib test",
"test": "npm run lint && jest"
},
"eslintIgnore": [
"lib/templates/*.*"
],
"files": [
"lib",
"types/*.d.ts"
],
"types": "./types/index.d.ts",
"dependencies": {
"@stripe/stripe-js": "^1.11.0"
},
"devDependencies": {
"@babel/core": "latest",
"@babel/preset-env": "latest",
"@nuxtjs/eslint-config": "latest",
"@nuxtjs/module-test-utils": "latest",
"babel-eslint": "latest",
"babel-jest": "latest",
"eslint": "latest",
"jest": "latest",
"nuxt": "latest"
}
}