-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 904 Bytes
/
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
{
"name": "language-code",
"version": "1.0.0",
"description": "An interface with language codes following ISO 639-1 standard",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"cleanup": "rm -rf ./dist",
"build": "npm run cleanup && tsc",
"deploy": "npm publish"
},
"devDependencies": {
"ts-jest": "^26.4.4",
"ts-loader": "^8.0.11",
"typescript": "^4.0.5"
},
"keywords": [
"country codes",
"ISO 639-1",
"language-code"
],
"files": [
"dist",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/AronssonFredrik/country-code.git"
},
"bugs": {
"url": "https://github.com/AronssonFredrik/country-code/issues"
},
"homepage": "https://github.com/AronssonFredrik/country-code#readme",
"author": "Fredrik Aronsson",
"license": "ISC"
}