forked from actions/github-script
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1 KB
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
{
"name": "atob-lite",
"version": "2.0.0",
"description": "Smallest/simplest possible means of using atob with both Node and browserify",
"main": "atob-node.js",
"browser": "atob-browser.js",
"license": "MIT",
"scripts": {
"test": "npm run test-node && npm run test-browser",
"test-node": "node test | tap-spec",
"test-browser": "browserify test | smokestack | tap-spec"
},
"author": {
"name": "Hugh Kennedy",
"email": "hughskennedy@gmail.com",
"url": "http://hughsk.io/"
},
"dependencies": {},
"devDependencies": {
"browserify": "^10.2.4",
"smokestack": "^3.3.0",
"tap-closer": "^1.0.0",
"tap-spec": "^4.0.0",
"tape": "^4.0.0"
},
"repository": {
"type": "git",
"url": "git://github.com/hughsk/atob-lite.git"
},
"keywords": [
"atob",
"base64",
"isomorphic",
"browser",
"node",
"shared"
],
"homepage": "https://github.com/hughsk/atob-lite",
"bugs": {
"url": "https://github.com/hughsk/atob-lite/issues"
}
}