forked from davidsneighbour/framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
130 lines (130 loc) · 3.08 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
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "colossus-wp-options-framework",
"version": "1.9.2",
"description": "Colossus WP Options Framework allows theme and plugin developers to create a admin pages, options, meta boxes, and theme customizer options with just a few simple lines of code.",
"main": "titan-framework.php",
"directories": {
"test": "tests"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate"
},
"repository": {
"type": "git",
"url": "https://github.com/davidsneighbour/colossus-wp-options-framework"
},
"keywords": [
"framework",
"options",
"admin",
"admin",
"panel",
"meta",
"box",
"theme",
"customizer",
"option",
"framework",
"library",
"sdk",
"edd",
"settings",
"api",
"theme",
"creator",
"theme",
"framework"
],
"author": {
"name": "Patrick Kollitsch",
"web": "https://davids-neighbour.com/"
},
"contributors": [
{
"name": "Phill Healey",
"web": "http://codeclinic.de"
},
{
"name": "Benjamin Intal, Gambit",
"web": "http://www.gambit.ph/"
}
],
"license": "GPL-2.0-or-later",
"bugs": {
"url": "https://github.com/davidsneighbour/colossus-wp-options-framework/issues"
},
"homepage": "https://github.com/davidsneighbour/colossus-wp-options-framework",
"devDependencies": {
"all-contributors-cli": "6.20.0",
"bower": "1.8.12",
"cz-conventional-changelog": "3.3.0",
"cz-customizable": "6.3.0",
"cz-customizable-ghooks": "2.0.0",
"gulp": "4.0.2",
"gulp-autoprefixer": "8.0.0",
"gulp-bower": "0.0.15",
"gulp-concat": "2.6.1",
"gulp-debug": "4.0.0",
"gulp-group-css-media-queries": "1.2.2",
"gulp-if": "3.0.0",
"gulp-ignore": "3.0.0",
"gulp-imagemin": "7.1.0",
"gulp-include": "2.4.1",
"gulp-jshint": "2.1.0",
"gulp-minify-css": "1.2.4",
"gulp-notify": "4.0.0",
"gulp-prompt": "1.2.0",
"gulp-rename": "2.0.0",
"gulp-replace": "1.1.3",
"gulp-rsync": "0.0.9",
"gulp-ruby-sass": "4.0.0",
"gulp-run": "1.7.1",
"gulp-scp2": "0.2.0",
"gulp-shell": "0.8.0",
"gulp-sort": "2.0.0",
"gulp-sourcemaps": "3.0.0",
"gulp-uglify": "3.0.2",
"gulp-watch": "5.0.1",
"gulp-wp-pot": "2.5.0",
"gulp-zip": "5.1.0",
"jshint-stylish": "2.2.1",
"merge-stream": "2.0.0"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
},
"cz-customizable": {
"config": ".cz_config.js"
}
},
"jshint": {
"boss": true,
"curly": true,
"eqeqeq": true,
"eqnull": true,
"esversion": 3,
"expr": true,
"immed": true,
"noarg": true,
"nonbsp": true,
"onevar": true,
"quotmark": "single",
"trailing": true,
"undef": true,
"unused": true,
"browser": true,
"globals": {
"_": false,
"Backbone": false,
"jQuery": false,
"JSON": false,
"wp": false,
"export": false,
"module": false,
"require": false
}
}
}