-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
67 lines (67 loc) · 1.83 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
65
66
67
{
"name": "coffeescope2",
"version": "0.5.1",
"description": "coffeelint plugin that handles variables and their scope",
"keywords": [
"coffee",
"coffee-script",
"coffee-lint",
"coffeelint",
"coffeelintrule",
"lint",
"scope",
"undefined",
"unused",
"variables"
],
"author": "Radu Dan <[email protected]> (https://github.com/za-creature)",
"contributors": [
"Nick McCready <[email protected]> (https://codemonkeyseedo.blogspot.com)",
"Daniel Bayley <[email protected]> (https://github.com/danielbayley)",
"Allan Bazinet (https://github.com/bazineta)",
"Zach Millman <[email protected]> (https://medium.com/@zmillman)"
],
"repository": {
"type": "git",
"url": "https://github.com/za-creature/coffeescope.git"
},
"bugs": {
"url": "https://github.com/za-creature/coffeescope/issues"
},
"homepage": "https://github.com/za-creature/coffeescope",
"license": "MIT",
"main": "lib",
"scripts": {
"prepublish": "coffee -o lib -c src",
"lint": "coffeelint src/ && coffeelint test/",
"test": "mocha test/",
"test-all": "mocha --reporter mocha-junit-reporter test/",
"coverage": "istanbul report lcov"
},
"files": [
"lib"
],
"dependencies": {
"globals": "^11.5.0"
},
"devDependencies": {
"chai": "^4.1.2",
"coffee-coverage": "^3.0.0",
"coffeescript": "^2.3.0",
"coffeelint": "latest",
"coffeelint-advanced-colon-assignment-spacing": "^1.0.0",
"coffeelint-braces-padding": "^0.1.5",
"coffeelint-limit-newlines": "0.0.2",
"coffeelint-prefer-double-quotes": "^0.1.0",
"coffeescope2": "latest",
"coveralls": "^3.0.1",
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"mocha-junit-reporter": "^1.17.0",
"proxyquire": "^2.0.1"
},
"engines": {
"npm": "*",
"node": ">=0.8"
}
}