-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
43 lines (43 loc) · 1.05 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
{
"name": "swiss-party-colors",
"version": "1.1.6",
"description": "A list of Swiss party colors, names and abbreviations to use in data visualizations",
"scripts": {
"download": "NODE_ENV=production node ./downloadGsheets.js",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint index.js",
"fix": "eslint --fix index.js",
"start": "web-dev-server --node-resolve --open --watch --root-dir showcase/"
},
"config": {
"googleSheetFileId": "1PCD3se4Nc4ME-i391yPYyAlLdgtXoZJFoJy_6Mlf7BY"
},
"repository": {
"type": "git",
"url": "https://github.com/srfdata/swiss-party-colors"
},
"main": "./index.js",
"keywords": [
"swiss",
"switzerland",
"politics",
"parties",
"party",
"color",
"colors"
],
"author": "@benjazehr",
"license": "MIT",
"devDependencies": {
"@web/dev-server": "^0.3.1",
"eslint": "^6.3.0",
"eslint-plugin-es5": "^1.4.1",
"gsheets": "^2.0.0",
"jest": "^24.9.0"
},
"dependencies": {
"axios": "^1.5.0",
"dotenv": "^16.3.1"
}
}