-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
100 lines (100 loc) · 2.51 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "flourite",
"version": "1.3.0",
"description": "A library for detecting the programming language of a code snippet.",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"browser": "dist/index.iife.js",
"jsdelivr": "dist/index.iife.js",
"unpkg": "dist/index.iife.js",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
},
"./package.json": "./package.json",
"./*": "./*"
},
"scripts": {
"lint": "eslint --fix --ignore-path .gitignore .",
"prepare": "husky install",
"test:unit": "uvu -r esbuild-register tests \".(test|spec).ts\"",
"test:coverage": "c8 --reporter=text --reporter=lcov npm run test:unit",
"test:tdd": "npm run test:unit; watchlist src tests -- npm run test:unit",
"test": "npm run test:coverage",
"build": "rollup -c",
"benchmark": "node -r esbuild-register benchmark/benchmark.ts"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/teknologi-umum/flourite.git"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/teknologi-umum"
},
{
"type": "saweria",
"url": "https://saweria.co/teknologiumum"
}
],
"keywords": [
"programming",
"language",
"detection",
"detector",
"code",
"classify",
"classifier",
"identify",
"identifier"
],
"contributors": [
{
"name": "Reinaldy Rafli",
"email": "[email protected]",
"url": "https://github.com/aldy505"
},
{
"name": "elianiva",
"email": "[email protected]",
"url": "https://github.com/elianiva"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/teknologi-umum/flourite/issues"
},
"homepage": "https://github.com/teknologi-umum/flourite#readme",
"directories": {
"lib": "./src",
"test": "./tests"
},
"engines": {
"node": ">=16"
},
"devDependencies": {
"@aldy505/kruonis": "^0.0.1",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@teknologi-umum/eslint-config-typescript": "^0.0.10",
"@types/node": "^20.14.12",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"c8": "^10.1.2",
"esbuild": "^0.23.0",
"esbuild-register": "^3.6.0",
"eslint": "^8.57.0",
"husky": "^9.0.11",
"rollup": "^4.19.1",
"tslib": "^2.6.3",
"typescript": "^5.5.4",
"uvu": "^0.5.6",
"watchlist": "^0.3.1"
}
}