-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.43 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
{
"name": "eslint-config-divid",
"version": "0.7.1",
"description": "ESLint Sharable Config using typescript and prettier with functional programming style",
"main": "src/index.js",
"author": "Jonas Kello <jonas.kello@divid.se>",
"license": "MIT",
"engines": {
"node": ">= 6"
},
"repository": {
"type": "git",
"url": "https://github.com/dividab/eslint-config-divid"
},
"bugs": {
"url": "https://github.com/dividab/eslint-config-divid/issues"
},
"keywords": [
"eslint",
"eslintconfig",
"config",
"divid",
"javascript",
"typescript",
"es2015",
"es2016",
"es2017",
"es2018"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"confusing-browser-globals": "^1.0.11",
"eslint": "^7.17.0",
"eslint-plugin-functional": "^4.2.0",
"eslint-plugin-import": "^2.25.4",
"jest": "^26.4.2",
"typescript": "^4.0.3"
},
"peerDependencies": {
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^6.0.0 || ^7.0.0 || ^8.0.0",
"eslint-plugin-functional": "^4.2.0",
"eslint-plugin-import": "^2.25.4"
},
"scripts": {
"test": "jest",
"preversion": "yarn test",
"postversion": "git push --tags && yarn publish --new-version $npm_package_version && git push && echo \"Successfully released version $npm_package_version!\""
}
}