forked from deedubs/escomplex-js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.1 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
{
"name": "escomplex-js",
"version": "0.1.4",
"description": "Javascript wrapping library for escomplex.",
"homepage": "https://github.com/philbooth/escomplex-js",
"bugs": "https://github.com/philbooth/escomplex-js/issues",
"license": "MIT",
"author": "Phil Booth <[email protected]> (https://github.com/philbooth)",
"main": "./src",
"repository": {
"type": "git",
"url": "https://github.com/jared-stilwell/escomplex.git"
},
"keywords": [
"escomplex",
"complexity",
"simplicity",
"cyclomatic",
"halstead",
"maintainability",
"dependencies",
"static",
"analysis",
"metrics",
"esprima"
],
"dependencies": {
"check-types": "2.1.x",
"escomplex": "0.2.5",
"escomplex-ast-moz": "0.1.x",
"espree": "^1.6.0"
},
"devDependencies": {
"jshint": "2.5.x",
"mocha": "2.0.x",
"chai": "1.10.x",
"mockery": "1.4.x",
"spooks": "0.5.x"
},
"scripts": {
"lint": "./node_modules/jshint/bin/jshint src --config config/jshint.json",
"test": "./node_modules/mocha/bin/mocha --ui tdd --reporter spec --colors test"
}
}