-
Notifications
You must be signed in to change notification settings - Fork 12
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.4.0",
"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.22.5",
"@babel/preset-env": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@types/chai": "^4.3.5",
"@types/jest": "^29.5.2",
"@types/lodash": "^4.14.195",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"babel-jest": "^29.5.0",
"chai": "^4.3.7",
"eslint": "^8.43.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.2",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"jest-watch-typeahead": "^2.2.2",
"prettier": "^2.8.8",
"typescript": "^5.1.6"
},
"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"
}