-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
51 lines (51 loc) · 1.29 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
{
"scripts": {
"test": "vitest --run index",
"build": "tsup",
"prepare": "npm run build",
"prepublishOnly": "npm pack && npm rm iso-language-codes && npm i -D iso-language-codes-*.tgz && vitest --run exports && npm run test",
"typecheck": "vitest typecheck --run",
"coverage": "vitest run --coverage index"
},
"license": "MIT",
"name": "iso-language-codes",
"version": "2.0.0",
"description": "ISO 639-1, -2/T and -2/B codes with names",
"repository": {
"type": "git",
"url": "git+https://github.com/pubcore/iso-language-codes.git"
},
"main": "dist/cjs/index.js",
"exports": {
"./package.json": "./package.json",
".": {
"import": "./dist/index.mjs",
"require": "./dist/cjs/index.js"
}
},
"files": [
"dist"
],
"keywords": [
"ISO",
"639-1",
"codes",
"iso language codes"
],
"author": "pubcore",
"devDependencies": {
"@vitest/coverage-istanbul": "^0.34.5",
"eslint": "^8.0.1",
"husky": "^8.0.3",
"iso-language-codes": "file:iso-language-codes-1.1.0.tgz",
"istanbul-badges-readme": "^1.8.5",
"tsup": "^7.2.0",
"typescript": "^5.2.2",
"vitest": "^0.34.5"
},
"husky": {
"hooks": {
"pre-commit": "npm run coverage && istanbul-badges-readme && git add 'README.md'"
}
}
}