-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·49 lines (49 loc) · 1.19 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
{
"name": "nuxt-paystack",
"version": "0.0.12",
"description": "Paystack payment gateway integration for Nuxt.js",
"repository": "ECJ222/nuxt-paystack",
"license": "MIT",
"keywords": [
"nuxt",
"nuxtjs",
"nuxt-module",
"vue",
"payment",
"paystack"
],
"contributors": [
{
"name": "ECJ222 <enochchejieh@gmail.com>"
}
],
"files": [
"lib"
],
"main": "lib/index.js",
"scripts": {
"dev": "nuxt example",
"lint": "eslint --ext .js,.vue --no-error-on-unmatched-pattern . && prettier --write *.{js,vue} --no-error-on-unmatched-pattern .",
"prepare": "husky install",
"release": "npm run test && standard-version && git push --follow-tags && npm publish",
"test": "npm run lint"
},
"dependencies": {},
"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",
"husky": "^7.0.0",
"jest": "latest",
"nuxt-edge": "latest",
"prettier": "^2.3.2",
"standard-version": "latest"
},
"publishConfig": {
"access": "public"
}
}