-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 923 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
39
{
"name": "@itassistors/langline",
"version": "1.1.0",
"description": "Node JS library to look up programming languages based on file extensions, file name and actual file",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest"
},
"bin": {
"langline": "./dist/cli/langline.js"
},
"keywords": [
"langline",
"linguist",
"languages",
"programming",
"synatx-highlighting"
],
"repository": {
"url": "https://github.com/neel1996/langline"
},
"author": "itassistors",
"license": "Apache 2.0",
"dependencies": {
"@types/json2csv": "^5.0.1",
"@types/table": "^6.0.0",
"commander": "^7.2.0",
"csvtojson": "^2.0.10",
"istextorbinary": "^5.12.0",
"json2csv": "^5.0.6",
"table": "^6.0.9",
"textextensions": "^5.12.0"
},
"devDependencies": {
"@types/jest": "^26.0.21",
"@types/node": "^14.14.35"
}
}