-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
44 lines (44 loc) · 1.06 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
{
"name": "country-state-picker",
"version": "1.1.5",
"description": "NPM package to get the list of countries and their states.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "mocha --reporter spec",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AnupKumarPanwar/country-state-picker.git"
},
"keywords": [
"country",
"state",
"picker",
"location",
"place",
"dial code",
"phone code"
],
"author": "Anup Kumar Panwar",
"license": "ISC",
"bugs": {
"url": "https://github.com/AnupKumarPanwar/country-state-picker/issues"
},
"homepage": "https://github.com/AnupKumarPanwar/country-state-picker#readme",
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^8.4.0",
"prettier": "^2.1.2",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.2.4"
},
"files": [
"lib/**/*"
]
}