-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.02 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
{
"name": "compact-base64",
"version": "2.1.3",
"description": "Base64 encoding and decoding for Node.JS and browsers without polyfills",
"main": "index.js",
"browser": "browser.js",
"scripts": {
"build": "webpack",
"test": "npm run test:node && npm run test:browser",
"test:node": "mocha test/harness.js",
"test:browser": "karma start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ambassify/compact-base64-js.git"
},
"type": "commonjs",
"keywords": [
"Base64",
"compact",
"base64url"
],
"author": "Gert Sallaerts <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ambassify/compact-base64-js/issues"
},
"homepage": "https://github.com/ambassify/compact-base64-js#readme",
"devDependencies": {
"chai": "^4.3.8",
"karma": "^6.4.2",
"karma-chrome-launcher": "^3.2.0",
"karma-mocha": "^2.0.1",
"karma-webpack": "^5.0.0",
"mocha": "^10.2.0",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
}
}