forked from flaviusone/coverage-diff
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.69 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
{
"name": "coverage-diff",
"version": "1.5.1",
"description": "Reports differences between two istanbul JSON code coverage summaries.",
"main": "lib/index",
"types": "lib/index",
"repository": "[email protected]:flaviusone/coverage-diff.git",
"author": "Flavius Tirnacop <[email protected]>",
"license": "MIT",
"scripts": {
"build": "./node_modules/.bin/tsc -p tsconfig.build.json",
"build-docs": "typedoc --out docs/ src/ typings/",
"clean": "rm -rf lib docs coverage",
"eslint": "eslint 'src/**'",
"lint": "yarn clean && yarn eslint && yarn prettier",
"postpublish": "yarn publish-docs",
"precommit": "lint-staged",
"prepublishOnly": "yarn clean && yarn lint && yarn test && yarn build",
"prettier": "prettier --single-quote --list-different '**/*.{js,ts,md}'",
"publish-docs": "yarn build-docs && gh-pages -d docs -b gh-pages && yarn clean",
"test": "yarn run tsc && yarn run jest",
"jest": "jest --maxWorkers=4",
"jest-watch": "yarn jest --watch",
"jest-coverage": "yarn jest --coverage",
"tsc": "./node_modules/.bin/tsc --noEmit --pretty"
},
"lint-staged": {
"*.{js,ts}": "eslint",
"*.{js,ts,md}": "prettier --single-quote --list-different"
},
"devDependencies": {
"@types/jest": "22.2.3",
"@types/node": "9.6.2",
"eslint": "4.19.1",
"eslint-config-prettier": "2.9.0",
"eslint-plugin-typescript": "0.11.0",
"gh-pages": "1.1.0",
"husky": "0.14.3",
"jest": "22.4.3",
"lint-staged": "7.0.4",
"prettier": "1.11.1",
"ts-jest": "22.4.3",
"typedoc": "0.11.1",
"typescript": "2.8.1",
"typescript-eslint-parser": "14.0.0"
},
"dependencies": {
"markdown-table": "1.1.1"
}
}