forked from atom/text-buffer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.77 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
{
"name": "simple-text-buffer",
"version": "9.2.11",
"description": "A version of Atom's text-buffer with marker layers and file support removed",
"main": "./lib/text-buffer",
"scripts": {
"prepublish": "npm run clean && npm run compile && npm run lint && npm run atomdoc",
"atomdoc": "grunt shell:update-atomdoc atomdoc",
"clean": "grunt clean",
"compile": "coffee --no-header --output lib --compile src",
"lint": "coffeelint -r src spec && eslint src spec",
"test": "jasmine --captureExceptions --forceexit",
"ci": "npm run compile && npm run lint && npm run test"
},
"repository": {
"type": "git",
"url": "https://github.com/peterhal/text-buffer.git"
},
"bugs": {
"url": "https://github.com/peterhal/text-buffer/issues"
},
"license": "MIT",
"devDependencies": {
"eslint": "2.2.0",
"eslint-config-standard": "5.1.0",
"eslint-plugin-standard": "1.3.1",
"eslint-plugin-promise": "^1.0.8",
"coffee-cache": "^0.2.0",
"coffee-script": "^1.10.0",
"coffeelint": "^1.14.2",
"fs-plus": "^2.0.0",
"grunt": "^0.4.5",
"grunt-atomdoc": "^1.0.1",
"grunt-cli": "^0.1.13",
"grunt-coffeelint": "^0.0.15",
"grunt-contrib-coffee": "^0.13.0",
"grunt-shell": "^1.1.2",
"iconv-lite": "0.4.13",
"jasmine-core": "2.4.1",
"jasmine": "2.4.1",
"json-diff": "^0.3.1",
"random-seed": "^0.2.0",
"rimraf": "~2.2.2",
"temp": "^0.8.3",
"underscore-plus": "^1.0.0"
},
"dependencies": {
"diff": "3.0.1",
"atom-patch": "0.3.0",
"event-kit": "2.2.0",
"span-skip-list": "0.2.0"
},
"coffeelintConfig": {
"no_empty_param_list": {
"level": "error"
},
"max_line_length": {
"level": "ignore"
},
"indentation": {
"level": "ignore"
}
}
}