forked from marchah/node-countries
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.69 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.69 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "node-countries",
"version": "2.1.2",
"main": "build/index.js",
"description": "Countries and Provinces JSON Data",
"scripts": {
"test": "jest --env=node --colors",
"lint": "eslint --ext ts ./",
"build": "tsc",
"typecheck": "tsc --noEmit"
},
"keywords": [
"country",
"countries",
"province",
"provinces",
"state",
"states"
],
"author": "marchah <marchah.dev@gmail.com>",
"dependencies": {
"lodash": "^4.17.21"
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@babel/preset-env": "^7.19.3",
"@babel/preset-typescript": "^7.18.6",
"@types/chai": "^4.3.3",
"@types/jest": "^29.1.2",
"@types/lodash": "^4.14.186",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"babel-jest": "^29.1.2",
"chai": "^4.3.6",
"eslint": "^8.24.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.1",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.1.2",
"jest-watch-typeahead": "^2.0.0",
"prettier": "^2.7.1",
"typescript": "^4.8.4"
},
"jest": {
"testEnvironment": "node",
"testMatch": null,
"testRegex": "/__tests__/.*(test|spec)\\.(js|ts)$",
"watchPlugins": [
"jest-watch-typeahead/filename",
"jest-watch-typeahead/testname"
]
},
"repository": {
"type": "git",
"url": "git://github.com/marchah/node-countries.git"
},
"bugs": {
"url": "https://github.com/marchah/node-countries/issues"
},
"homepage": "https://github.com/marchah/node-countries",
"license": "MIT"
}