-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
118 lines (118 loc) · 2.78 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "the-paste",
"version": "2.1.2",
"description": "Image Paste Plugin for WordPress",
"main": "js/admin/the-paste.js",
"scripts": {
"i18n": "wp i18n make-pot . languages/the-paste.pot --domain=the-paste --exclude=tmp/*",
"dev": "gulp dev",
"test": "node ./src/run/test.js",
"dev-test": "./src/run/dev-test.sh",
"dashicons": "node ./src/run/dashicons.js",
"rollback": "git reset --hard HEAD~ && git push origin +master",
"ver": "echo \"<?php return $(jq .version < ./package.json);\" > include/version.php"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mcguffin/the-paste.git"
},
"author": "Jörn Lund",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/mcguffin/the-paste/issues"
},
"homepage": "https://github.com/mcguffin/the-paste#readme",
"devDependencies": {
"@babel/core": "*",
"@babel/plugin-proposal-object-rest-spread": "*",
"@babel/preset-env": "*",
"babelify": "*",
"bootstrap": "*",
"browserify": "*",
"browserify-shim": "*",
"event-stream": "^4.0.1",
"gulp": "*",
"gulp-autoprefixer": "^7.0.1",
"gulp-jsonlint": "*",
"gulp-sass": "*",
"gulp-sourcemaps": "^3.0.0",
"gulp-uglify-es": "^3.0.0",
"sass": "*",
"tinyify": "*",
"vinyl-buffer": "*",
"vinyl-source-stream": "*"
},
"browserify-shim": {
"jquery": "global:jQuery",
"backbone": "global:Backbone"
},
"engines": {},
"browserslist": [
">0.1%",
"not dead",
"not op_mini all"
],
"wpSkeleton": {
"components": {
"core": {
"components": [],
"flags": []
},
"admin": {
"components": [],
"flags": [
"css",
"js",
"mce"
]
},
"git": {
"user": "mcguffin",
"remote": "git@github.com:mcguffin/the-paste.git"
},
"settings": {
"components": {
"writing": {
"flags": []
}
},
"flags": []
}
},
"name": "The Paste",
"slug": "the-paste",
"prefix": "the_paste",
"textdomain": "the-paste",
"namespace": "ThePaste",
"author": "Jörn Lund",
"author_uri": "https://github.com/mcguffin",
"year": 2019,
"type": "plugin"
},
"wporg": {
"steps": [
"build",
"git",
"wporg"
],
"type": "plugin",
"build": {
"versionedFiles": null,
"prebuild": [
"wp i18n make-pot . languages/the-paste.pot --domain=the-paste --exclude=tmp"
],
"build": [
"npm run ver"
]
},
"git": {
"host": "github.com",
"user": "mcguffin"
},
"wporg": {
"assets": ".wporg",
"svn_user": "podpirate",
"svn": "https://plugins.svn.wordpress.org/the-paste/"
}
}
}