-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
75 lines (75 loc) · 1.92 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
{
"name": "b2a",
"version": "1.1.2",
"description": "btoa and atob (ie base64/base64url encoding and decoding) support for node.js or old browsers, with the Unicode Problems fixed",
"main": "lib/index.js",
"module": "es/index.js",
"scripts": {
"build": "npm run build:es && npm run build:rollup",
"build:rollup": "BABEL_ENV=rollup rollup -c",
"build:es": "BABEL_ENV=es babel --out-dir es src",
"test:only": "BABEL_ENV=ava nyc ava --verbose --timeout=10s",
"test:dev": "npm run test:only && npm run report:dev",
"test": "npm run test:only",
"prepublishOnly": "npm run build",
"posttest": "npm run report",
"report": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"report:dev": "nyc report --reporter=html && npm run report:open",
"report:open": "open coverage/index.html"
},
"files": [
"lib/",
"es/"
],
"repository": {
"type": "git",
"url": "git://github.com/kaelzhang/b2a.git"
},
"keywords": [
"btoa",
"encode",
"decode",
"atob",
"base64",
"base64url",
"base64-url",
"unicode",
"16-bit",
"8-bit",
"homoglyphs"
],
"engines": {
"node": ">=4"
},
"author": "kaelzhang",
"license": "MIT",
"bugs": {
"url": "https://github.com/kaelzhang/b2a/issues"
},
"ava": {
"require": "@babel/register",
"babel": {
"testOptions": {
"babelrc": true
}
},
"files": [
"test/*.test.js"
]
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/plugin-transform-arrow-functions": "^7.2.0",
"@babel/plugin-transform-block-scoping": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/register": "^7.5.5",
"ava": "^2.2.0",
"codecov": "^3.5.0",
"eslint-config-ostai": "^3.0.0",
"eslint-plugin-import": "^2.18.2",
"nyc": "^14.1.1",
"rollup": "^1.19.3",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-node-resolve": "^5.2.0"
}
}