-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1017 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
{
"name": "dutch-cities-formatter",
"version": "1.0.4",
"description": "small util library to get dutch cities in a formatted way",
"author": "Mark van der Steenhoven",
"license": "MIT",
"main": "index.js",
"scripts": {
"fetch": "ts-node src/getCities.ts",
"prepare-publish": "cp package.json dist/package.json && cp README.md dist/README.md",
"test": "jest",
"publish": "npm run fetch && npm run build && npm run prepare-publish && cd dist && npm publish",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "https://github.com/Markvandersteen/Dutch-Cities-Search"
},
"devDependencies": {
"@babel/preset-env": "^7.23.2",
"@babel/preset-typescript": "^7.23.2",
"@types/jest": "^29.5.6",
"@types/node": "^20.8.7",
"chokidar": "^3.5.3",
"jest": "^29.7.0",
"prettier": "3.0.3",
"rimraf": "^5.0.5",
"ts-loader": "^9.5.0",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"dependencies": {
"fuse.js": "^6.6.2"
}
}