forked from aadsm/jschardet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1.01 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
{
"name": "@datawrapper/jschardet",
"version": "3.0.1-1",
"description": "Character encoding auto-detection in JavaScript (port of python's chardet)",
"author": "António Afonso",
"license": "LGPL-2.1+",
"keywords": [
"encoding",
"charset"
],
"repository": {
"type": "git",
"url": "https://github.com/datawrapper/jschardet.git"
},
"types": "index.d.ts",
"directories": {
"lib": "./lib",
"test": "./test"
},
"devDependencies": {
"browserify": "~12.0.1",
"google-closure-compiler": "^20230802.0.0",
"jest": "^27.4.7"
},
"scripts": {
"dist-dev": "mkdir -p dist && browserify index.js -s jschardet --detect-globals false -o dist/jschardet.js",
"dist": "npm run dist-dev && google-closure-compiler --warning_level QUIET --compilation_level SIMPLE_OPTIMIZATIONS --js dist/jschardet.js > dist/jschardet.min.js",
"test": "jest"
},
"engines": {
"node": ">=0.1.90"
}
}