-
-
Notifications
You must be signed in to change notification settings - Fork 55
/
package.json
36 lines (36 loc) · 1.1 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
{
"name": "remote-working-list",
"version": "1.0.0",
"description": "List of job search websites for nomadic workers",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npm run build:opml; npm run build:html; npm run build:markdown",
"build:opml": "node src/index.js opml > dist/remote-working-resources.opml",
"build:html": "node src/index.js html > dist/remote-working-resources.html",
"build:markdown": "node src/index.js list > dist/remote-working-resources.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/georgemandis/remote-working-list.git"
},
"keywords": [
"travel",
"job",
"list"
],
"author": "George Mandis",
"license": "ISC",
"bugs": {
"url": "https://github.com/georgemandis/remote-working-list/issues"
},
"homepage": "https://github.com/georgemandis/remote-working-list#readme",
"dependencies": {
"csv-parse": "^5.3.4"
},
"devDependencies": {
"eslint": "^8.7.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.4"
}
}