forked from Nixinova/LinguistJS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.27 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
52
53
54
55
{
"name": "linguist-js-cw",
"version": "2.4.2",
"description": "Analyse languages used in a folder. Powered by GitHub Linguist, although it doesn't need to be installed.",
"main": "dist/index.js",
"bin": {
"linguist": "bin/index.js"
},
"engines": {
"node": ">=12"
},
"scripts": {
"prepare": "npm test && npm run perf",
"perf": "tsc && node test/perf",
"test": "tsc && node test/folder && echo --- && node test/unit"
},
"files": [
"bin/",
"dist/**/*.js",
"dist/*.d.ts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Nixinova/Linguist.git"
},
"keywords": [
"linguist",
"languages",
"language-analysis",
"language-analyzer"
],
"author": "Nixinova (https://nixinova.com)",
"license": "ISC",
"bugs": {
"url": "https://github.com/Nixinova/Linguist/issues"
},
"homepage": "https://github.com/Nixinova/Linguist#readme",
"dependencies": {
"binary-extensions": "^2.2.0",
"commander": "^9.1.0",
"common-path-prefix": "^3.0.0",
"cross-fetch": "^3.1.5",
"ignore": "^5.2.0",
"isbinaryfile": "^4.0.8",
"js-yaml": "^4.1.0",
"node-cache": "^5.1.2"
},
"devDependencies": {
"@types/glob-to-regexp": "ts4.6",
"@types/js-yaml": "ts4.6",
"@types/node": "ts4.6",
"deep-object-diff": "^1.1.7",
"typescript": "~4.6.2"
}
}