-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
50 lines (50 loc) · 1.17 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
{
"name": "strapi-plugin-ezforms",
"version": "0.1.7",
"description": "Easy way to integrate forms into your Strapi app",
"strapi": {
"name": "ezforms",
"description": "Easy way to integrate forms into your Strapi app",
"kind": "plugin"
},
"dependencies": {
"axios": "^0.24.0"
},
"peerDependencies": {
"@strapi/strapi": "^4.0.0"
},
"scripts": {
"lint:js": "eslint --ext \".js\" --ignore-path .gitignore .",
"lint": "npm run lint:js",
"test": "jest --coverage",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs"
},
"author": {
"name": "Excl Networks Inc."
},
"repository": {
"type": "git",
"url": "https://github.com/excl-networks/strapi-plugin-ezforms"
},
"maintainers": [
{
"name": "Excl Networks Inc."
}
],
"engines": {
"node": ">=14.x.x <=20.x.x",
"npm": ">=6.0.0"
},
"license": "MIT",
"devDependencies": {
"@types/jest": "^28.1.8",
"babel-eslint": "^10.1.0",
"eslint": "^8.22.0",
"jest": "^28.1.3",
"jest-mock-axios": "^4.6.1",
"vitepress": "^1.0.0-alpha.15",
"vue": "^3.2.39"
}
}