forked from teknologi-umum/flourite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.4 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
{
"name": "flourite",
"version": "1.1.1",
"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"
},
"./package.json": "./package.json",
"./*": "./*"
},
"scripts": {
"lint": "eslint --fix --ignore-path .gitignore .",
"format": "prettier --write --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": "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",
"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"
},
"devDependencies": {
"@aldy505/kruonis": "^0.0.1",
"@rollup/plugin-typescript": "^8.2.5",
"@types/node": "^16.6.1",
"@typescript-eslint/eslint-plugin": "^4.29.1",
"@typescript-eslint/parser": "^4.29.1",
"c8": "^7.8.0",
"esbuild": "^0.12.20",
"esbuild-register": "^3.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^7.0.1",
"prettier": "^2.3.2",
"rollup": "^2.56.2",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.3.1",
"typescript": "^4.3.5",
"uvu": "^0.5.1",
"watchlist": "^0.2.3"
}
}