-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.76 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
{
"name": "@skills17/test-result-printer",
"version": "2.2.0",
"description": "Prints test results in a nice format to the console.",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"build": "npm run build:js && npm run build:types",
"build:js": "babel src --out-dir lib --delete-dir-on-start --extensions \".ts\"",
"build:js:watch": "npm run build:js -- --watch --verbose",
"build:types": "tsc --emitDeclarationOnly --project tsconfig.types.json",
"lint": "tsc --noEmit && eslint . --ext .ts --ext .js --max-warnings 0",
"lint:fix": "npm run lint -- --fix",
"test": "jest",
"test:watch": "npm test -- --watch",
"prepublishOnly": "npm run test && npm run lint && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/skills17/test-result-printer.git"
},
"author": "Cyril Wanner <info@cyr.li>",
"license": "MIT",
"bugs": {
"url": "https://github.com/skills17/test-result-printer/issues"
},
"homepage": "https://github.com/skills17/test-result-printer#readme",
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-typescript": "^7.12.7",
"@types/jest": "^27.0.3",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"babel-jest": "^27.4.2",
"eslint": "^8.3.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.4.3",
"prettier": "^2.2.1",
"strip-ansi": "^6.0.1",
"typescript": "^4.1.3"
},
"dependencies": {
"@skills17/test-result": "^2.1.0",
"chalk": "^4.1.2",
"figures": "^3.2.0"
}
}