-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.72 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
{
"name": "smelly-detector",
"private": false,
"version": "0.0.12",
"main": "build/src/index.js",
"description": "Find out the smells in your tests, suggestions for correction and the theory behind them",
"exports": {
".": {
"types": "./types/src/index.d.ts",
"default": "./build/src/index.js"
},
"./reports": {
"default": "./build/src/reports.js",
"types": "./types/src/reports.d.ts"
}
},
"dependencies": {
"esprima": "^4.0.1",
"handlebars": "^4.7.8",
"typescript": "*"
},
"repository": {
"url": "git+https://github.com/marabesi/smelly-test.git#main"
},
"devDependencies": {
"@stryker-mutator/mocha-runner": "^8.5.0",
"@stryker-mutator/typescript-checker": "^8.5.0",
"@types/esprima": "^4.0.6",
"@types/node": "*",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"eslint": "^8.34.0",
"node-html-parser": "^6.1.13",
"nodemon": "^3.1.4",
"ts-loader": "*",
"ts-node": "^10.9.2"
},
"scripts": {
"compile": "rm -rf build/ types/ && tsc && cpy 'src/reporters/layout/**/*' 'build/src/reporters/layout/'",
"watch": "webpack --watch",
"clean": "rm -rf out/ dist/ types/",
"compile-tests": "npm run clean && tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"lint": "eslint . --ext ts",
"test": "vitest --watch=false ./**/**.test.ts",
"test:coverage": "rm -rf smelly-report.html coverage/ && npm run test -- --coverage",
"test:mutation": "stryker run",
"coveralls": "npm run test:coverage && coveralls --verbose < coverage/lcov.info"
},
"author": {
"name": "Matheus Marabesi",
"url": "https://marabesi.com"
},
"license": "ISC"
}