-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.5 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
{
"name": "basta",
"version": "1.0.3",
"description": "Basta is clone detection tool (copy/paste detector), support 100+ programming languages. Developed by Andrey Kucherenko.\n Example use: basta -t 10 /path/to/code",
"main": "lib/index.js",
"bin": {
"basta": "./bin/basta"
},
"author": "Andrey Kucherenko <[email protected]>",
"license": "MIT",
"scripts": {
"lint": "tslint 'src/**/*.ts'",
"lint:fix": "tslint 'src/**/*.ts' --fix",
"test": "mocha ./test/index.js --compilers ts:ts-node/register,tsx:ts-node/register",
"test:dev": "npm test -- --watch",
"build": "tsc --outDir lib -d",
"prepublish": "yarn build",
"wip": "ts-node ./src/cli.ts"
},
"devDependencies": {
"@types/chai": "^3.5.2",
"@types/cli-table2": "^0.2.1",
"@types/colors": "^1.1.3",
"@types/fs-extra": "^4.0.2",
"@types/mocha": "^2.2.41",
"@types/node": "^7.0.22",
"@types/proxyquire": "^1.3.28",
"@types/pug": "^2.0.4",
"@types/shelljs": "^0.7.4",
"@types/sinon": "^2.2.2",
"chai": "^3.5.0",
"chai-subset": "^1.5.0",
"del": "^2.2.2",
"glob": "^7.1.2",
"mocha": "^3.4.1",
"proxyquire": "^1.8.0",
"shelljs": "^0.7.8",
"sinon": "^2.3.1",
"sinon-chai": "^2.10.0",
"ts-node": "^3.0.4",
"tslint": "^5.4.3",
"typescript": "^2.6.1"
},
"dependencies": {
"cli-table2": "^0.2.0",
"colors": "^1.1.2",
"commander": "^2.9.0",
"fs-extra": "^4.0.1",
"glob-stream": "^6.1.0",
"pug": "^2.0.0-rc.3"
}
}