-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
48 lines (48 loc) · 1.02 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
{
"name": "astii",
"description": "AST aware diff and patch",
"main": "cli.js",
"version": "0.1.1",
"engines": {
"node": ">=0.4.0"
},
"maintainers": [
{
"name": "Vladimir Adamic",
"email": "[email protected]"
}
],
"bin": {
"astii": "cli.js"
},
"scripts": {
"test": "mocha --reporter spec",
"debug": "node-debug _mocha",
"cover": "node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha -- -R spec test/*"
},
"repository": {
"type": "git",
"url": "http://github.com/Vunovati/astii.git"
},
"dependencies": {
"colors": "^1.0.3",
"commander": "^2.7.1",
"diff": "^1.3.1",
"escodegen": "^1.6.1",
"esprima": "^2.1.0",
"estraverse": "^3.1.0",
"shelljs": "^0.4.0"
},
"licenses": [
{
"type": "MIT",
"url": "https://raw.githubusercontent.com/Vunovati/astii/master/LICENSE"
}
],
"devDependencies": {
"chai": "^2.2.0",
"coveralls": "^2.11.3",
"istanbul": "^0.3.17",
"mocha": "^2.2.1"
}
}