-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.14 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.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
{
"name": "esformatter-wordpress",
"version": "0.2.1",
"description": "An esformatter plugin to format JavaScript code according to WordPress' coding standards.",
"license": "MIT",
"repository": "cedaro/esformatter-wordpress",
"author": {
"name": "Brady Vercher",
"url": "http://www.cedaro.com/"
},
"main": "index.js",
"scripts": {
"lint": "jshint index.js lib/*.js test/compare.spec.js",
"test": "mocha -R spec test"
},
"keywords": [
"esformatter",
"esformatter-plugin",
"wordpress",
"coding standards",
"javascript",
"beautifier",
"formatter",
"syntax"
],
"dependencies": {
"esformatter": "^0.10.0",
"esformatter-braces": "^1.2.1",
"esformatter-dot-notation": "^1.3.1",
"esformatter-jquery-chain": "^1.1.0",
"esformatter-quote-props": "^2.0.0",
"esformatter-quotes": "^1.0.2",
"esformatter-remove-trailing-commas": "^1.0.1",
"esformatter-special-bangs": "^1.0.1",
"mout": "^1.0.0",
"rocambole-token": "^1.2.1",
"rocambole-whitespace": "^1.0.0"
},
"devDependencies": {
"chai": "^3.0.0",
"jshint": "^2.8.0",
"mocha": "^3.2.0"
}
}