forked from brentlintner/synt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (105 loc) · 2.59 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "synt",
"version": "0.4.5",
"description": "Find similar functions and classes in your JavaScript/TypeScript code",
"author": "Brent Lintner <[email protected]>",
"repository": {
"type": "git",
"url": "git://github.com/brentlintner/synt.git"
},
"bin": {
"synt": "bin/synt"
},
"files": [
"bin/synt",
"src/@types",
"lib",
"LICENSE",
"README.md"
],
"engines": {
"node": ">=4.0.0",
"npm": ">=2.0.0"
},
"keywords": [
"duplicate",
"similar",
"functions",
"methods",
"classes",
"code",
"analysis",
"compare",
"javascript",
"typescript"
],
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/brentlintner/synt/issues"
},
"homepage": "https://github.com/brentlintner/synt",
"main": "lib/index.js",
"scripts": {
"compile": "tsc",
"clean": "rm -rf {.nyc_output,coverage,lib} && git checkout -- lib",
"dev": "tsc -w",
"lint-cov": "node bin/lint-cov",
"ncu": "ncu -a",
"nyc": "nyc",
"release-it": "release-it",
"test": "globstar -- _mocha \"test/spec/**/*.coffee\"",
"test-cov": "nyc -r lcov -r text -x test -x **/node_modules/** npm run -s test",
"test-ci-build": "node bin/test-ci-build",
"tsc": "tsc",
"vile": "vile p -u -x src.ts:lib.js -n"
},
"dependencies": {
"@types/chalk": "^0.4.31",
"@types/commander": "^2.9.1",
"@types/escodegen": "0.0.6",
"@types/esprima": "^2.1.33",
"@types/estraverse": "0.0.6",
"@types/estree": "0.0.35",
"@types/lodash": "^4.14.65",
"cardinal": "^1.0.0",
"chalk": "^1.1.3",
"commander": "^2.9.0",
"escodegen": "^1.8.1",
"esprima": "^4.0.0",
"estraverse": "^4.2.0",
"ignore": "^3.3.3",
"lodash": "^4.17.4",
"typescript": "^2.3.4",
"walk-sync": "^0.3.2"
},
"devDependencies": {
"chai": "^3.5.0",
"coffee-script": "^1.12.6",
"coffeelint": "^1.16.0",
"globstar": "^1.0.0",
"mimus": "^0.2.5",
"mocha": "^3.4.2",
"npm-check-updates": "^2.11.3",
"nyc": "^11.0.2",
"release-it": "^2.7.3",
"retire": "^1.3.2",
"shelljs": "^0.7.8",
"sinon": "^2.3.4",
"sinon-chai": "^2.10.0",
"tslint": "^5.4.3",
"vile": "^0.16.1",
"vile-coffeelint": "^0.1.16",
"vile-comment": "^0.1.19",
"vile-coverage": "^0.2.15",
"vile-depcheck": "^0.1.13",
"vile-eclint": "^0.1.14",
"vile-escomplex": "^0.1.5",
"vile-git": "^0.5.3",
"vile-language": "^0.1.13",
"vile-ncu": "^0.2.4",
"vile-nsp": "^0.2.14",
"vile-retire": "^0.1.3",
"vile-stat": "^0.0.15",
"vile-tslint": "^0.3.3"
}
}