-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
45 lines (45 loc) · 964 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
38
39
40
41
42
43
44
45
{
"name": "atom-hg",
"main": "./lib/atom-hg",
"version": "2.0.15",
"description": "Mercurial support for Atom text editor.",
"keywords": [
"mercurial",
"hg",
"vcs"
],
"repository": "https://github.com/victor-torres/atom-hg",
"license": "MIT",
"engines": {
"atom": ">=0.200.0"
},
"dependencies": {
"event-kit": "2.0.0",
"jsdifflib": "1.1.0"
},
"providedServices": {
"atom.repository-provider": {
"versions": {
"0.1.0": "getRepositoryProviderService"
}
}
},
"devDependencies": {
"chai": "^3.5.0",
"coffee-script": "^1.10.0",
"coffeelint": "^1.16.0",
"mocha": "^3.0.2"
},
"scripts": {
"test": "npm run lint & npm run mocha",
"mocha": "mocha --compilers coffee:coffee-script/register",
"lint": "coffeelint lib test"
},
"coffeelintConfig": {
"max_line_length": {
"value": 100,
"level": "error",
"limitComments": true
}
}
}