-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 1.83 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 1.83 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"version": "0.2.1",
"license": "MIT",
"keywords": [
"countries",
"country codes",
"ISO 3166",
"iso-3166",
"ISO 3166-1",
"iso-3166-1",
"ISO 3166-1 Alpha-2",
"iso-3166-1-alpha-2",
"ISO 3166-1 Alpha-3",
"iso-3166-1-alpha-3",
"ISO 3166-1 Numeric",
"iso-3166-1-numeric"
],
"repository": {
"type": "git",
"url": "git+https://github.com/takuma7/iso-3166-1-ts.git"
},
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test",
"lint": "tsdx lint src scripts",
"prepare": "tsdx build",
"prepublishOnly": "yarn lint && yarn test",
"size": "size-limit",
"analyze": "size-limit --why",
"generate-code": "ts-node -O '{\"module\": \"commonjs\"}' ./scripts/generate-code",
"docs": "typedoc --out docs src/index.ts"
},
"peerDependencies": {},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"name": "iso-3166-1-ts",
"author": "takuma7",
"module": "dist/iso-3166-1-ts.esm.js",
"size-limit": [
{
"path": "dist/iso-3166-1-ts.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/iso-3166-1-ts.esm.js",
"limit": "10 KB"
}
],
"devDependencies": {
"@size-limit/preset-small-lib": "^5.0.1",
"@types/shelljs": "^0.8.9",
"csv-parse": "^4.16.0",
"got": "^11.8.2",
"husky": "^7.0.1",
"shelljs": "^0.8.4",
"size-limit": "^5.0.1",
"ts-node": "^10.1.0",
"tsdx": "^0.14.1",
"tslib": "^2.3.0",
"typedoc": "^0.21.4",
"typedoc-plugin-markdown": "^3.10.4",
"typescript": "^4.3.5"
}
}