-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.05 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
{
"name": "@gulp-plugin/eol",
"description": "Gulp plugin to ensure consistent end of line characters.",
"version": "1.1.0",
"main": "lib/index.js",
"types": "typings/index.d.ts",
"publishConfig": {
"access": "public"
},
"files": [
"lib/",
"typings/",
"test/",
"src/"
],
"scripts": {
"build": "npm run build:types && npm run build:js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "tsc",
"lint": "eslint src/**/* && tsc --noEmit",
"test": "jest --ci --verbose --forceExit --detectOpenHandles --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gulp-plugin/eol.git"
},
"keywords": [
"gulp",
"gulp-plugin",
"eol"
],
"author": "dhkatz",
"license": "MIT",
"bugs": {
"url": "https://github.com/gulp-plugin/eol/issues"
},
"homepage": "https://github.com/gulp-plugin/eol#readme",
"devDependencies": {
"@types/gulp": "^4.0.9",
"@types/jest": "^26.0.24",
"@types/node": "^16.3.2",
"@types/vinyl": "^2.0.5",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"coveralls": "^3.1.1",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"gulp": "^4.0.2",
"jest": "^27.0.6",
"prettier": "^2.3.2",
"ts-jest": "^27.0.3",
"typescript": "^4.3.5",
"vinyl": "^2.2.1"
},
"eslintConfig": {
"extends": [
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended"
],
"parser": "@typescript-eslint/parser",
"rules": {}
},
"prettier": {
"semi": false,
"singleQuote": true,
"printWidth": 100
},
"jest": {
"preset": "ts-jest",
"globals": {
"ts-jest": {
"tsconfig": "./tsconfig.json"
}
},
"testEnvironment": "node",
"collectCoverage": true,
"testRegex": "/test/.*\\.test\\.[jt]s$",
"moduleFileExtensions": [
"ts",
"js"
],
"collectCoverageFrom": [
"src/**/*.{js,ts}",
"!<rootDir>/node_modules/"
]
}
}