-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.67 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
{
"name": "@chatie/eslint-config",
"version": "1.4.1",
"description": "ESLint Sharable Configurations and Rules in Chatie Organization",
"main": "./src/eslintrc.cjs",
"scripts": {
"dist": "echo dist",
"postinstall": "node bin/install.cjs",
"lint": "eslint src/**/*.*js",
"test:pack": "bash -x scripts/npm-pack-testing.sh",
"test": "npm run lint && npm run test:unit",
"test:unit": "cross-env NODE_OPTIONS=\"--no-warnings --loader=ts-node/esm\" tap \"tests/*.spec.ts\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/Chatie/eslint-config.git"
},
"keywords": [
"eslint",
"eslintConfig"
],
"author": {
"name": "Huan LI",
"email": "[email protected]"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Chatie/eslint-config/issues"
},
"homepage": "https://github.com/Chatie/eslint-config#readme",
"dependencies": {
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"array.prototype.flatmap": "^1.3.1",
"eslint": "^8.31.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"file-name-linter": "^1.1.0",
"markdownlint-cli": "^0.33.0",
"pkg-up": "^3.0.0"
},
"devDependencies": {
"@chatie/git-scripts": "^0.6.2",
"@chatie/semver": "^0.4.7",
"@chatie/tsconfig": "^4.6.4",
"@types/eslint": "^8.4.10",
"@types/glob": "^8.0.0",
"glob": "^8.0.3"
},
"publishConfig": {
"access": "public",
"tag": "next"
},
"git": {
"scripts": {
"pre-push": "npx git-scripts-pre-push"
}
}
}