forked from codesnippetspro/code-snippets
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.14 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.14 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
{
"name": "code-snippets",
"version": "2.13.0",
"description": "Manage code snippets running on a WordPress-powered site through a graphical interface",
"homepage": "https://wordpress.org/plugins/code-snippets",
"main": "gulpfile.babel.js",
"directories": {
"test": "tests"
},
"scripts": {
"build": "gulp",
"watch": "gulp watch",
"package": "gulp package",
"test": "gulp test"
},
"repository": {
"type": "git",
"url": "https://github.com/sheabunge/code-snippets.git"
},
"keywords": [
"wordpress-plugin"
],
"author": {
"name": "Shea Bunge",
"email": "bungeshea@gmail.com",
"url": "https://sheabunge.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/sheabunge/code-snippets/issues"
},
"dependencies": {
"codemirror": "^5.42.0",
"npm-check-updates": "^2.15.0",
"php-parser": "^3.0.0-prerelease.7",
"prismjs": "^1.15.0",
"tag-it": "^2.0.0"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.0",
"@babel/register": "^7.0.0",
"autoprefixer": "^9.4.2",
"babel-plugin-prismjs": "^1.0.2",
"babelify": "^10.0.0",
"browserify": "^16.2.3",
"cssnano": "^4.1.7",
"gulp": "^4.0.0",
"gulp-archiver": "^1.0.0",
"gulp-change": "^1.0.2",
"gulp-clean": "^0.4.0",
"gulp-copy": "^4.0.1",
"gulp-eslint": "^5.0.0",
"gulp-flatten": "^0.4.0",
"gulp-gettext": "^0.3.0",
"gulp-imagemin": "^5.0.3",
"gulp-phpcs": "^2.2.0",
"gulp-phpunit": "^0.26.0",
"gulp-postcss": "^8.0.0",
"gulp-rename": "^1.4.0",
"gulp-rtlcss": "^1.3.0",
"gulp-sourcemaps": "^2.6.4",
"gulp-uglify": "^3.0.1",
"gulp-wp-pot": "^2.3.3",
"gulp-zip": "^4.2.0",
"postcss-import": "^12.0.1",
"precss": "^4.0.0",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0"
},
"babel": {
"presets": [
"@babel/preset-env"
]
}
}