-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.1 KB
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
{
"name": "circulating-magazines",
"version": "1.0.0",
"description": "A project of magazine circulation data",
"main": "index.js",
"dependencies": {
"csvtojson": "^2.0.14",
"moment": "^2.30.1"
},
"devDependencies": {
"@changesets/cli": "^2.30.0",
"mocha": "^11.7.5"
},
"engines": {
"node": ">=24 <26"
},
"type": "module",
"scripts": {
"start": "npx live-server --port=3000 --open=/",
"test": "npx mocha",
"circulation-cleaner": "sh assets/data/scripts/circulation_cleaner.sh",
"geodata-cleaner": "sh assets/data/scripts/geodata_cleaner.sh",
"title-generator": "node assets/data/scripts/list-of-title-generator.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ayyrickay/circulating-magazines.git"
},
"keywords": [
"data",
"visualization",
"dc.js",
"javascript",
"d3",
"data",
"viz"
],
"author": "Ricky Holtz",
"license": "ISC",
"bugs": {
"url": "https://github.com/ayyrickay/circulating-magazines/issues"
},
"homepage": "https://github.com/ayyrickay/circulating-magazines#readme"
}