-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
94 lines (94 loc) · 1.93 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "gulp-stats",
"version": "1.0.2",
"description": "Display task stats summary for Gulp",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"screenshot.png",
"dist"
],
"scripts": {
"lint": "eslint ./src --ext .ts",
"test": "jest",
"watch": "tsc --watch",
"build": "rm -rf ./dist & tsc",
"prepublishOnly": "npm run build"
},
"keywords": [
"gulp",
"gulpfriendly",
"time",
"task",
"profile",
"benchmark",
"measure",
"stats"
],
"author": "Mike Simmonds (https://mike.id)",
"license": "MIT",
"dependencies": {
"chalk": "^4.1.0",
"pretty-hrtime": "^1.0.0",
"strip-ansi": "^6.0.0",
"text-table": "^0.2.0"
},
"devDependencies": {
"@types/gulp": "^4.0.7",
"@types/jest": "^26.0.19",
"@types/node": "^14.14.14",
"@types/pretty-hrtime": "^1.0.0",
"@types/text-table": "^0.2.1",
"@typescript-eslint/eslint-plugin": "^4.10.0",
"@typescript-eslint/parser": "^4.10.0",
"eslint": "^7.16.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.3.0",
"gulp": "^4.0.2",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
},
"repository": "github:simmo/gulp-stats",
"prettier": {
"arrowParens": "avoid",
"tabWidth": 2,
"singleQuote": true,
"trailingComma": "es5",
"endOfLine": "auto",
"useTabs": true
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended",
"prettier/@typescript-eslint"
],
"plugins": [
"@typescript-eslint"
],
"ignorePatterns": [
"*.d.ts",
"node_modules/"
],
"rules": {
"@typescript-eslint/explicit-function-return-type": "off"
}
},
"jest": {
"timers": "modern",
"verbose": true,
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"transform": {
"^.+\\.ts$": "ts-jest"
}
}
}