forked from kucherenko/jscpd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.52 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
{
"name": "jscpd",
"version": "0.3.5",
"description": "Copy/paste detector for programming code, support JavaScript, CoffeeScript, PHP, Ruby, Python, Less, Go, Java, C#, C++, C languages",
"author": {
"name": "Andrey Kucherenko",
"email": "[email protected]",
"url": "http://kucherenko.org/"
},
"main": "index.js",
"bin": {
"jscpd": "./bin/jscpd"
},
"dependencies": {
"shelljs": "0.3.x",
"coffee-script": "1.9.x",
"crypto": "0.0.x",
"cli": "0.6.x",
"js-yaml": "3.2.x",
"glob": "4.3.x",
"underscore": "1.7.x",
"codemirror": "4.10.x",
"winston": "0.8.x"
},
"devDependencies": {
"mocha": "2.1.x",
"jscpd": "0.3.x",
"chai": "1.10.x",
"sinon": "1.12.x",
"xml2js": "0.4.x",
"coffee-coverage": "0.4.x",
"mocha-phantom-coverage-reporter": "0.1.0",
"coveralls": "2.11.x"
},
"scripts": {
"test": "mocha --compilers coffee:coffee-script/register -R spec $(find test -name '*.test.coffee')"
},
"repository": {
"type": "git",
"url": "https://github.com/kucherenko/jscpd.git"
},
"keywords": [
"code",
"cpd",
"pmd",
"analyze",
"quality",
"copy",
"paste",
"javascript",
"php",
"python",
"coffeescript",
"ruby",
"java",
"c#",
"c++",
"c"
],
"readmeFilename": "README.md",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/kucherenko/jscpd/blob/master/LICENSE"
}
],
"preferGlobal": true,
"engines": {
"node": "~0.10.x"
}
}