-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 2.11 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
95
96
97
98
99
100
101
102
{
"name": "prereview-feed",
"version": "1.0.0",
"description": "Generating a feed of reviews from outbreaksci.prereview.org",
"license": "MIT",
"contributors": [
"Harum Helmy <[email protected]",
"Josh King <[email protected]"
],
"keywords": [
"science",
"preprint",
"feed",
"xml",
"json"
],
"bugs": {
"url": "https://github.com/throneless-tech/PREreview-feed/issues"
},
"directories": {
"doc": "docs"
},
"homepage": "https://github.com/throneless-tech/PREreview-feed",
"main": "./europepmcUpload/index.js",
"bin": {
"prereview-feed": "./europepmcUpload/index.js"
},
"files": [
"./europepmcUpload/index.js"
],
"scripts": {
"start": "npx ./script.js",
"lint": "eslint --ignore-path .gitignore --ext js --fix ./feed"
},
"engines": {
"node": ">=12.0"
},
"husky": {
"hooks": {
"pre-push": "npm run lint"
}
},
"prettier": {
"printWidth": 80,
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"trailingComma": "all",
"bracketSpacing": true,
"proseWrap": "always"
},
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 2020
},
"extends": [
"eslint:recommended",
"plugin:node/recommended",
"plugin:prettier/recommended",
"plugin:promise/recommended"
],
"env": {
"node": true
},
"rules": {
"node/no-extraneous-import": [
"error",
{
"allowModules": [
"lodash"
]
}
],
"node/shebang": [
"error",
{
"convertPath": {
"src/**/*.js": [
"^src/(.+?)\\.js$",
"dist/$1.js"
]
}
}
]
}
},
"devDependencies": {
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"husky": "^4.2.5",
"prettier": "^2.1.0"
},
"dependencies": {
"basic-ftp": "^4.6.6",
"feed": "^4.2.1",
"node-fetch": "^2.6.0",
"xmlbuilder2": "^2.3.1"
}
}