-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
40 lines (40 loc) · 1.1 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
{
"name": "dogecoinjs",
"version": "0.2.1",
"description": "The Comfiest Way to get Dogecoin info and events for the Web and NodeJS!",
"main": "index.js",
"scripts": {
"build": "npm-run-all --sequential build:*",
"build:browserify": "browserify index.js -o ./public/dogecoin.js",
"build:version": "node version.js",
"build:uglify": "terser --compress --mangle --source-map --output ./public/dogecoin.min.js ./public/dogecoin.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/instafluff/DogecoinJS.git"
},
"keywords": [
"Doge",
"Dogecoin",
"JS",
"Instafluff"
],
"author": "Instafluff",
"license": "MIT",
"bugs": {
"url": "https://github.com/instafluff/DogecoinJS/issues"
},
"homepage": "https://github.com/instafluff/DogecoinJS#readme",
"devDependencies": {
"browserify": "^17.0.0",
"npm-run-all": "^4.1.5",
"terser": "^5.6.0"
},
"dependencies": {
"node-fetch": "^2.6.1",
"pusher-js": "^7.0.3",
"webwebweb": "^1.4.6",
"ws": "^7.4.3"
}
}