-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
47 lines (47 loc) · 1.02 KB
/
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
44
45
46
47
{
"name": "countries-states-cities",
"version": "1.0.6",
"description": "Countries, states/regions, cities.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"build": "tsc -p tsconfig.json"
},
"author": "[email protected]",
"license": "MIT",
"directories": {
"lib": "lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thiagobueno/countries-states-cities.git"
},
"husky": {
"hooks": {
"pre-commit": "npm test",
"pre-push": "npm test"
}
},
"keywords": [
"Javascript",
"Country",
"State",
"City",
"Countries",
"States",
"Cities"
],
"bugs": {
"url": "https://github.com/thiagobueno/countries-states-cities/issues"
},
"homepage": "https://github.com/thiagobueno/countries-states-cities#readme",
"devDependencies": {
"@types/jest": "^24.0.12",
"husky": "^1.3.1",
"jest": "^23.6.0",
"ts-jest": "^24.0.2",
"typescript": "^3.4.5"
},
"dependencies": {}
}