-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 849 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
{
"name": "mmlima-api",
"version": "1.0.1",
"description": "Unofficial Typed API of Municipalidad Metropolitana de Lima",
"main": "dist-node/index.js",
"browser": "dist-browser/index.js",
"homepage": "https://github.com/jbuendia1y/mmlima-api",
"repository": {
"type": "git",
"url": "https://github.com/jbuendia1y/mmlima-api"
},
"scripts": {
"build:node": "tsc -p tsconfig.node.json",
"build:browser": "tsc -p tsconfig.browser.json",
"build": "npm run build:node && npm run build:browser",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node index.js"
},
"keywords": [
"Municipalidad Metropolitana",
"Lima",
"API"
],
"author": "@jbuendia1y",
"license": "MIT",
"dependencies": {
"axios": "^0.27.2"
},
"devDependencies": {
"typescript": "^4.7.4"
}
}