forked from inexorabletash/text-encoding
-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 806 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 806 Bytes
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
{
"name": "text-encoder-lite",
"author": "AJ ONeal <coolaj86@gmail.com>",
"contributors": [],
"version": "2.0.0",
"description": "A Lite Polyfill for the Encoding Living Standard's API.",
"main": "text-encoder-lite.js",
"files": [
"text-encoder-lite.js",
"text-encoder-lite.min.js"
],
"repository": {
"type": "git",
"url": "https://github.com/solderjs/TextEncoderLite.git"
},
"keywords": [
"utf8",
"utf-8",
"TypedArray",
"Uint8Array",
"encoding",
"decoding",
"living standard"
],
"bugs": {
"url": "https://github.com/solderjs/TextEncoderLite/issues"
},
"homepage": "https://github.com/solderjs/TextEncoderLite",
"devDependencies": {
"uglify-js": "^3.3.16"
},
"scripts": {
"minify": "uglifyjs text-encoder-lite.js -o text-encoder-lite.min.js --source-map"
}
}