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
50 lines (50 loc) · 1.25 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.25 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
{
"name": "code-snippets",
"version": "2.8.0 ",
"description": "Manage code snippets running on a WordPress-powered site through a graphical interface",
"homepage": "https://wordpress.org/plugins/code-snippets",
"main": "Gruntfile.js",
"directories": {
"test": "tests"
},
"scripts": {
"test": "grunt test"
},
"repository": {
"type": "git",
"url": "https://github.com/sheabunge/code-snippets.git"
},
"keywords": [
"wordpress-plugin"
],
"author": {
"name": "Shea Bunge",
"email": "info@bungeshea.com",
"url": "http://bungeshea.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/sheabunge/code-snippets/issues"
},
"dependencies": {
"codemirror": "^5.23.0"
},
"devDependencies": {
"autoprefixer": "^6.3.3",
"grunt": "^0.4.5",
"grunt-contrib-clean": "^0.7.0",
"grunt-contrib-copy": "^0.8.2",
"grunt-contrib-jshint": "^0.12.0",
"grunt-contrib-uglify": "^0.11.0",
"grunt-contrib-watch": "^0.6.1",
"grunt-csso": "^0.8.1",
"grunt-phpcs": "^0.4.0",
"grunt-phpunit": "^0.3.6",
"grunt-postcss": "^0.7.1",
"grunt-pot": "^0.2.1",
"grunt-potomo": "^3.3.4",
"grunt-wp-deploy": "^1.1.0",
"load-grunt-tasks": "^3.4.0",
"precss": "^1.4.0"
}
}