-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 957 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
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "basisjs-tools-ast",
"version": "1.6.2",
"description": "Tool set for basisjs-tools to work with various types of AST",
"homepage": "https://github.com/basisjs/basisjs-tools-ast",
"author": "Roman Dvornov <[email protected]>",
"license": "MIT",
"repository": "basisjs/basisjs-tools-ast",
"main": "./lib/index.js",
"engines": {
"node": ">=0.12.0"
},
"eslintConfig": {
"env": {
"node": true,
"mocha": true,
"es6": true
},
"rules": {
"no-undef": 2,
"no-unused-vars": [
2,
{
"vars": "all",
"args": "after-used"
}
]
}
},
"scripts": {
"test": "mocha"
},
"dependencies": {
"htmlparser2": "~4.1.0",
"csso": "~3.5.0",
"escodegen": "^1.8.1",
"esprima": "^3.1.3",
"estraverse": "^4.2.0"
},
"devDependencies": {
"mocha": "^2.3.3"
},
"files": [
"lib",
"LICENSE",
"README.md"
]
}