-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (80 loc) · 2.74 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
{
"name": "datocms-plugin-fields-divider",
"homepage": "https://github.com/atoms-studio/datocms-plugin-fields-divider",
"version": "1.0.0",
"description": "A divider which provides you a better experience between the model fields",
"main": "index.js",
"scripts": {
"start": "concurrently \"yarn dev\" \"yarn tunnel\"",
"tunnel": "ngrok http 5000",
"dev": "NODE_ENV=development webpack-dev-server --port 5000",
"dist": "NODE_ENV=production webpack --progress",
"prepublishOnly": "rimraf lib dist && mkdir dist && npm run dist",
"addToProject": "yo datocms-plugin:add-to-project",
"test": "echo 1"
},
"keywords": ["datocms","datocms-plugin","field-addon","json-field","text-field","boolean-field","float-field","integer-field","string-field","links-field","link-field","date-field","date-time-field","video-field","color-field","seo-field","lat-lon-field","field-separator","field-divider"],
"files": ["dist", "docs"],
"author": "atoms <[email protected]>",
"license": "ISC",
"datoCmsPlugin": {
"title": "Fields Divider",
"previewImage": "docs/preview.gif",
"coverImage": "docs/cover.png",
"entryPoint": "dist/index.html",
"pluginType": "field_addon",
"fieldTypes": ["json","text","boolean","float","integer","string","links","link","date","date_time","video","color","seo","lat_lon"],
"parameters": {
"global": [
{
"id": "developmentMode",
"label": "Development mode",
"type": "boolean",
"required": false,
"default": false,
"hint": "Shows debug messages in console"
}
],
"instance": [
{
"id": "caption",
"label": "Divider Title",
"type": "text",
"required": true,
"default": "My divider title",
"hint": "Add a divider title"
}
]
}
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.54",
"@babel/core": "^7.0.0-beta.54",
"@babel/preset-env": "^7.0.0-beta.54",
"@babel/register": "^7.0.0-beta.54", "babel-eslint": "^8.2.6",
"babel-loader": "^8.0.0-beta",
"concurrently": "^4.0.1",
"css-loader": "^1.0.0",
"eslint": "^5.3.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-import-resolver-webpack": "^0.10.1",
"eslint-loader": "^2.1.0",
"eslint-plugin-import": "^2.14.0",
"html-webpack-include-assets-plugin": "^1.0.5",
"html-webpack-inline-source-plugin": "^0.0.10",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.4.3",
"node-sass": "^4.9.3",
"ngrok": "^3.2.7",
"sass-loader": "^7.1.0",
"serve": "^10.0.2",
"style-loader": "^0.23.0",
"webpack": "^4.16.1",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.10",
"generator-datocms-plugin": "^1.0.3",
"yo": "^2.0.5"
},
"dependencies": {
}
}