-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
94 lines (94 loc) · 2.16 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-plugin/alias",
"version": "2.2.2",
"description": "Use Gulp to resolve Typescript path aliases during compilation.",
"main": "./lib/index.js",
"types": "./typings/index.d.ts",
"files": [
"lib/",
"typings/",
"src/",
"test/"
],
"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",
"test:coverage": "coveralls < coverage/lcov.info",
"prepublishOnly": "npm run build"
},
"author": {
"name": "David Katz",
"url": "https://github.com/dhkatz"
},
"repository": {
"type": "git",
"url": "https://github.com/gulp-plugin/alias"
},
"license": "MIT",
"keywords": [
"gulpplugin",
"gulp",
"typescript",
"ts",
"resolve",
"relative",
"paths"
],
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"devDependencies": {
"@types/jest": "^27.0.1",
"@types/node": "^16.3.1",
"@types/vinyl": "^2.0.2",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"coveralls": "^3.0.6",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^26.6.3",
"prettier": "^2.3.2",
"ts-jest": "^26.4.4",
"vinyl": "^2.2.0"
},
"dependencies": {
"typescript": "^4.3.5"
},
"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/"
]
}
}