-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.15 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
{
"version": "0.0.1",
"name": "uniter-markdown-plugin-example",
"description": "Example of how to use Uniter's experimental inline PHP Markdown plugin",
"keywords": [
"uniter",
"php",
"markdown",
"plugin"
],
"homepage": "https://github.com/uniter/markdown-plugin-example",
"author": "Dan Phillimore <[email protected]> (https://github.com/asmblah)",
"repository": {
"type": "git",
"url": "https://github.com/uniter/markdown-plugin-example"
},
"bugs": {
"email": "[email protected]",
"url": "https://github.com/uniter/markdown-plugin-example/issues"
},
"files": [
"dist/**",
"src/**",
"MIT-LICENSE.txt",
"README.md"
],
"scripts": {
"build:browser:dev": "webpack --devtool=source-map --mode=development --progress --watch",
"build:browser:prod": "webpack --devtool=source-map --mode=production --progress",
"start": "uniter cli/entry.php"
},
"dependencies": {
"uniter": "^2.16.0",
"uniter-markdown-plugin": "^1.0.0"
},
"devDependencies": {
"uniter-loader": "^1.0.0",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12"
},
"engines": {
"node": ">=8"
},
"license": "MIT"
}