-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 796 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 796 Bytes
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
{
"name": "@legendaryrob/countrify",
"version": "1.1.0",
"description": "A package to assist in the disection of ISO-3166-1(country) and ISO-3166-2(subdivision) ISO standards.",
"main": "index.js",
"scripts": {
"test": "jest",
"lint": "eslint 'src/**/*.js'"
},
"keywords": [
"ISO-3166-1",
"ISO-3166-2",
"countries",
"regions",
"states"
],
"author": "Ruberto Paluo",
"license": "MIT",
"repository": "Ruberto/countrify",
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^5.3.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "4.2.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.13.0",
"jest": "^24.7.1",
"prettier": "1.17.0"
}
}