forked from markwainwright/atom-linter-coffee-variables
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 828 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
{
"name": "linter-coffee-variables",
"main": "./lib/main",
"version": "0.4.2",
"description": "Lint CoffeeScript for undefined and unused variables",
"activationCommands": [],
"repository": "https://github.com/markwainwright/atom-linter-coffee-variables",
"license": "MIT",
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"package-deps": [
"linter"
],
"dependencies": {
"atom-package-deps": "^2.0.3",
"coffee-script": "^1.10.0",
"eslint": "^1.6.0",
"loophole": "^1.1.0",
"source-map": "^0.5.1"
},
"devDependencies": {
"chai": "^3.4.1",
"mocha": "^2.3.4"
},
"providedServices": {
"linter": {
"versions": {
"1.0.0": "provideLinter"
}
}
},
"scripts": {
"test": "mocha spec/spec.coffee --compilers coffee:coffee-script/register"
}
}