-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.72 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "@apollo-tech/country-codes",
"repository": {
"type": "git",
"url": "git+https://github.com/apollo-tech-dev/country-codes"
},
"version": "1.0.4",
"private": false,
"description": "A simple utility for retrieving country codes and names",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "jest",
"test:cov": "jest --coverage",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint --fix src/**/*.ts",
"format": "prettier --write \"src/**/*.ts\"",
"build": "tsup",
"prepare": "husky && husky install",
"prepush": "npm run lint",
"predeploy": "npm run lint && npm test",
"deploy": "npm test && npm run build && npm publish --access public"
},
"keywords": [
"country",
"codes",
"country-codes",
"FIPS",
"ISO",
"ISO-3166-alpha-2",
"ISO-3166-alpha-3",
"ISO-3166-numeric-3",
"alpha-2",
"alpha-3",
"numeric-3",
"utility",
"typescript"
],
"author": "Steven Hall",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/js": "^9.17.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.5",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.10.0",
"globals": "^15.14.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^15.3.0",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"typescript-eslint": "^8.19.0"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.ts": "prettier --write"
}
}