forked from twolfson/esformatter-var-each
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.16 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.16 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
{
"name": "esformatter-var-each",
"description": "Esformatter plugin that converts comma `var` statements into separate `var` statements",
"version": "2.1.0",
"homepage": "https://github.com/twolfson/esformatter-var-each",
"author": {
"name": "Todd Wolfson",
"email": "todd@twolfson.com",
"url": "http://twolfson.com/"
},
"repository": {
"type": "git",
"url": "git://github.com/twolfson/esformatter-var-each.git"
},
"bugs": {
"url": "https://github.com/twolfson/esformatter-var-each/issues"
},
"licenses": [
{
"type": "UNLICENSE",
"url": "https://github.com/twolfson/esformatter-var-each/blob/master/UNLICENSE"
}
],
"main": "lib/esformatter-var-each",
"engines": {
"node": ">= 0.8.0"
},
"scripts": {
"test": "mocha"
},
"dependencies": {
"rocambole": "~0.3.6",
"rocambole-token": "~1.2.1"
},
"devDependencies": {
"chai": "~3.0.0",
"esformatter": "~0.4.3",
"grunt": "~0.4.1",
"grunt-contrib-jshint": "~0.6.0",
"grunt-contrib-watch": "~0.4.0",
"mocha": "~1.11.0"
},
"keywords": [
"esformatter",
"esformatter-plugin",
"vareach",
"var-each"
]
}