forked from Laiff/escomplex-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.2 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.2 KB
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
{
"name": "escomplex-js",
"version": "2.1.0",
"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 <pmbooth@gmail.com> (https://github.com/philbooth)",
"main": "./src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/Laiff/escomplex-js.git"
},
"keywords": [
"escomplex",
"complexity",
"simplicity",
"cyclomatic",
"halstead",
"maintainability",
"dependencies",
"static",
"analysis",
"metrics",
"esprima"
],
"peerDependencies": {
"eslint": "^3.0.0"
},
"dependencies": {
"babel-eslint": "^7.0.0",
"check-types": "2.1.x",
"escomplex": "0.2.5",
"escomplex-ast-moz": "git+https://github.com/IOKI/escomplex-ast-moz.git"
},
"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"
}
}