-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1020 Bytes
/
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
{
"name": "esformatter-auto-wrap",
"version": "1.0.0",
"description": "esformatter plugin: automagically wraps line when they are over a configurable length",
"main": "esformatter-auto-wrap.js",
"scripts": {
"test": "mocha --ui bdd --reporter spec test"
},
"repository": {
"type": "git",
"url": "https://github.com/pgelinas/esformatter-auto-wrap.git"
},
"keywords": [
"esformatter",
"esformatter-plugin",
"wrap",
"AST"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/pgelinas/esformatter-auto-wrap"
},
"homepage": "https://github.com/pgelinas/esformatter-auto-wrap",
"devDependencies": {
"mocha": "https://github.com/millermedeiros/mocha/tarball/latest",
"chai": "^1.4",
"esformatter": "^0.6.1"
},
"dependencies": {
"defaults-deep": "^0.2.1",
"rocambole": "^0.5.1",
"rocambole-token": "^1.2.1",
"rocambole-whitespace": "^1.0.0",
"rocambole-indent": "^1.0.0",
"rocambole-linebreak": "^1.0.0"
}
}