This repository was archived by the owner on May 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.54 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.54 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
{
"name": "get-language-data",
"version": "0.0.7",
"private": false,
"description": "Get data related to programming languages",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"repository": "https://github.com/codinasion/get-language-data",
"homepage": "https://github.com/codinasion/get-language-data",
"bugs": {
"url": "https://github.com/codinasion/get-language-data/issues",
"email": "codinasion@gmail.com"
},
"author": {
"name": "Harsh Raj",
"email": "harshraj8843@gmail.com",
"url": "https://github.com/harshraj8843"
},
"license": "MIT",
"keywords": [
"codinasion",
"language",
"programming language",
"typescript",
"language data",
"programming language data",
"file extension",
"naming convention",
"programming language logo"
],
"scripts": {
"build": "sh script/build.sh",
"format": "sh script/format.sh",
"lint": "sh script/lint.sh",
"test": "sh script/test.sh",
"all": "sh script/run_all.sh",
"update_readme": "sh script/update_readme.sh",
"prepublishOnly": "yarn run all",
"preversion": "yarn run all && yarn update_readme",
"version": "git add -A src lib",
"postversion": "git push && git push --tags"
},
"dependencies": {
"codinasion-tools": "^0.1.1"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"jest": "^29.5.0",
"prettier": "^2.8.7",
"ts-jest": "^29.0.5",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": ">=4.3.0 <5.0.0-0"
}
}