This repository was archived by the owner on Aug 14, 2024. It is now read-only.
forked from mcguffin/the-paste
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 2.84 KB
/
package.json
File metadata and controls
113 lines (113 loc) · 2.84 KB
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
{
"name": "the-paste",
"version": "1.1.0",
"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": "^7.5.4",
"@babel/plugin-proposal-class-properties": "^7.5.0",
"@babel/plugin-proposal-object-rest-spread": "^7.5.4",
"@babel/plugin-transform-react-jsx": "^7.3.0",
"@babel/preset-env": "^7.5.4",
"babelify": "^10.0.0",
"browserify": "^16.3.0",
"browserify-shim": "^3.8.14",
"event-stream": "^4.0.1",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^8.0.0",
"gulp-concat": "^2.6.1",
"gulp-rename": "^2.0.0",
"gulp-sass": "^5.0.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-uglify": "^3.0.2",
"gulp-util": "^3.0.8",
"paste.js": "github:layerssss/paste.js",
"sass": "^1.38.1",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0"
},
"browserify-shim": {
"jquery": "global:jQuery"
},
"engines": {},
"browserslist": [
"last 3 versions",
"> 0.25%",
"IE 10"
],
"wpSkeleton": {
"components": {
"core": {
"components": [],
"flags": []
},
"admin": {
"components": [],
"flags": [
"css",
"js",
"mce"
]
},
"git": {
"user": "mcguffin",
"remote": "git@github.com:mcguffin/the-paste.git"
}
},
"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",
"github",
"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/"
}
}
}