-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 992 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
{
"name": "dpacl",
"version": "1.0.0",
"description": "División Político Administrativa de Chile",
"main": "dist/index.js",
"scripts": {
"start": "nodemon --exec babel-node ./src/index.js",
"build": "babel --minified --no-comments src --out-dir dist --copy-files",
"test": "jest",
"pretty": "prettier --write \"**/*.+(js|jsx|ts|tsx|json|yml|yaml|css|md)\""
},
"repository": {
"type": "git",
"url": "https://github.com/vicasas/dpacl.git"
},
"keywords": [
"Regiones",
"Provincias",
"Comunas",
"Chile"
],
"author": "Víctor Casas",
"license": "MIT",
"bugs": {
"url": "https://github.com/vicasas/dpacl/issues"
},
"homepage": "https://github.com/vicasas/dpacl#readme",
"devDependencies": {
"@babel/cli": "^7.12.13",
"@babel/core": "^7.12.13",
"@babel/node": "^7.12.13",
"@babel/preset-env": "^7.12.13",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"prettier": "^2.0.5"
},
"files": ["dist"]
}