-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 1.83 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
{
"name": "string-encode",
"version": "0.2.2",
"description": "Convert different types of JavaScript String to/from Uint8Array",
"reveal": true,
"publishConfig": {
"access": "public"
},
"module": "string-encode.js",
"main": "dist/string-encode.js",
"unpkg": "dist/string-encode.min.js",
"files": [
"string-encode.*",
"dist/*",
".babelrc",
"*.md"
],
"scripts": {
"build": "rollup -c rollup.config.mjs",
"test": "npx mocha --reporter spec",
"coverage": "npx nyc --reporter=lcov --reporter=text-summary npm run test",
"verup": "npx verup",
"jest": "npx jest",
"jest:watch": "npx jest --watch",
"jest:cov": "npx jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/duzun/string-encode.js.git"
},
"keywords": [
"String",
"Multibyte",
"UTF8",
"Buffer",
"Uint8Array",
"binary",
"hex"
],
"author": "Dumitru Uzun <contact@duzun.me> (https://DUzun.Me)",
"license": "MIT",
"bugs": {
"url": "https://github.com/duzun/string-encode.js/issues"
},
"homepage": "https://duzun.me/playground/encode#utf8Decode=X%C3%97%C2%A9",
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-terser": "^0.4.0",
"chai": "^4.2.0",
"esm": "^3.2.25",
"mocha": "^10.2.0",
"rollup": "^3.10.0"
},
"browserslist": "> 0.25%, not dead",
"jshintConfig": {
"esversion": 9,
"laxbreak": true,
"laxcomma": true,
"undef": true,
"unused": true,
"sub": true,
"expr": true,
"bitwise": false,
"eqeqeq": false,
"boss": true,
"eqnull": true,
"scripturl": true,
"-W041": false
},
"extra": {
"verup": {
"files": [
"string-encode.js",
"package-lock.json"
]
}
}
}