-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 991 Bytes
/
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": "usbabynames",
"version": "2.1.2",
"description": "Returns data about baby names used in the United States 1880-2021",
"main": "lib/usBabyNames.mjs",
"scripts": {
"test": "NODE_OPTIONS=--experimental-vm-modules npx jest",
"postinstall": "node unzip.js"
},
"author": "Jon Roig (@runnr_az)",
"license": "MIT",
"dependencies": {
"adm-zip": "^0.5.16",
"sqlite3": "^5.1.7"
},
"directories": {
"example": "examples"
},
"type": "module",
"keywords": [
"names",
"baby",
"census",
"history",
"socialsecurity",
"usgovt",
"babynames",
"usa"
],
"repository": {
"type": "git",
"url": "git+https://github.com/jonroig/usBabyNames.js.git"
},
"bugs": {
"url": "https://github.com/jonroig/usBabyNames.js/issues"
},
"homepage": "https://github.com/jonroig/usBabyNames.js#readme",
"devDependencies": {
"@babel/preset-env": "^7.25.4",
"babel-jest": "^29.7.0",
"jest": "^29.7.0"
}
}