-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
63 lines (63 loc) · 1.4 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
{
"name": "esgraph",
"description": "creates a control flow graph from an esprima abstract syntax tree",
"version": "0.3.0",
"keywords": [
"AST",
"abstract syntax tree",
"esprima",
"CFG",
"control flow graph"
],
"main": "./lib",
"bin": {
"esgraph": "./bin/esgraph.js"
},
"maintainers": [
"Arpad Borsos <arpad.borsos@googlemail.com> (http://swatinem.de)"
],
"dependencies": {
"espree": "^3.5.2",
"walkes": "^0.2.0"
},
"devDependencies": {
"coveralls": "^3.0.0",
"eslint": "^4.11.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"mocha": "^4.0.1",
"nyc": "^11.3.0",
"prettier": "^1.8.2",
"prettier-eslint-cli": "^4.4.0",
"should": "^13.1.3"
},
"scripts": {
"test": "nyc mocha",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"lint": "eslint .",
"format": "prettier-eslint --write \"**/*.{json,js}\""
},
"eslintConfig": {
"extends": "airbnb-base",
"env": {
"mocha": true
},
"rules": {
"no-restricted-syntax": "off",
"no-continue": "warn",
"no-use-before-define": [
"error",
{
"functions": false
}
],
"no-param-reassign": "warn",
"no-shadow": "warn"
}
},
"repository": "git://github.com/Swatinem/esgraph.git",
"license": "LGPL-3.0",
"engines": {
"node": ">=8.0.0"
}
}