-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.33 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
{
"name": "eslint-config-cheminfo-typescript",
"version": "17.0.0",
"description": "Shared ESLint config for TypeScript projects",
"type": "module",
"exports": {
".": "./index.js",
"./base": "./base.js",
"./jsdoc": "./jsdoc.js",
"./unicorn": "./unicorn.js"
},
"files": [
"base.js",
"index.js",
"jsdoc.js",
"unicorn.js"
],
"scripts": {
"eslint": "eslint *.js test/test.js",
"eslint-fix": "npm run eslint -- --fix",
"prettier": "prettier --check .",
"prettier-write": "prettier --write .",
"test": "npm run test-only && npm run eslint && npm run prettier",
"test-only": "node test/test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cheminfo/eslint-config-cheminfo-typescript.git"
},
"keywords": [],
"author": "Michaël Zasso",
"license": "MIT",
"bugs": {
"url": "https://github.com/cheminfo/eslint-config-cheminfo-typescript/issues"
},
"homepage": "https://github.com/cheminfo/eslint-config-cheminfo-typescript#readme",
"dependencies": {
"eslint-config-cheminfo": "^13.0.0",
"typescript-eslint": "^8.15.0"
},
"peerDependencies": {
"eslint": "^9.15.0",
"typescript": ">=5.5.4"
},
"devDependencies": {
"cheminfo-types": "^1.8.1",
"eslint": "9.15.0",
"prettier": "^3.3.3",
"typescript": "5.5.4"
}
}