-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
90 lines (90 loc) · 2.43 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
{
"name": "synt",
"version": "0.5.0",
"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"
},
"main": "lib/index.js",
"types": "src/@types/index.d.ts",
"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",
"scripts": {
"compile": "tsc",
"clean": "rm -rf {.nyc_output,coverage,lib} && git checkout -- lib",
"dev": "tsc -w",
"lint": "eslint .; coffeelint -q test",
"lint-cov": "nyc check-coverage --statements 100 --functions 100 --branches 100 --lines 100",
"release": "release-it",
"test": "mocha --require coffeescript/register -R dot -s 2000 --recursive 'test/spec/**/*.coffee'",
"test-cov": "nyc -r lcov -r text -x test/fixtures npm run test",
"test-ci-build": "npm run lint && npm run compile && npm run test-cov && npm run lint-cov",
"tsc": "tsc"
},
"dependencies": {
"@javascript-obfuscator/escodegen": "^2.3.0",
"@types/escodegen": "0.0.10",
"@types/esprima": "^4.0.6",
"@types/estraverse": "^5.1.7",
"@types/estree": "^1.0.5",
"@types/lodash": "^4.14.202",
"@types/node": "^20.10.5",
"cardinal": "^2.1.1",
"chalk": "^4.1.2",
"commander": "^11.1.0",
"espree": "^9.6.1",
"estraverse": "^5.3.0",
"lodash": "^4.17.21",
"typescript": "^5.3.3",
"walk-sync": "^3.0.0"
},
"devDependencies": {
"@stylistic/eslint-plugin-ts": "^1.5.1",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"chai": "^4.3.10",
"coffeelint": "^2.1.0",
"coffeescript": "^2.7.0",
"eslint": "^8.56.0",
"eslint-plugin-jsdoc": "^46.9.1",
"eslint-plugin-prefer-arrow": "^1.2.3",
"mocha": "^10.2.0",
"npm-check-updates": "^16.14.12",
"nyc": "^15.1.0",
"release-it": "^17.0.1",
"retire": "^4.3.4",
"sinon": "^17.0.1",
"sinon-chai": "^3.7.0"
}
}