-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
40 lines (40 loc) · 1.26 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": "steem-rpc",
"version": "0.6.6",
"description": "Websocket RPC library for the Steem blockchain",
"main": "lib/index.js",
"browser": {
"ws": false
},
"scripts": {
"test": "mocha --recursive",
"test:watch": "mocha --recursive --watch",
"example": "node ./examples/example.js",
"build": "babel src --presets babel-preset-es2015 --out-dir lib",
"build:watch": "babel --watch src --presets babel-preset-es2015 --out-dir lib",
"prebrowserify": "npm run build",
"postbrowserify": "uglifyjs --compress --mangle --sequences --drop_console --output build/steem-rpc.min.js -- build/steem-rpc.js",
"browserify": "browserify lib/index.js --standalone steemWS -o build/steem-rpc.js -d",
"prepublish": "npm run build"
},
"author": "Sigve Kvalsvik <[email protected]> (https://github.com/svk31)",
"license": "MIT",
"dependencies": {
"ws": "^1.1.1"
},
"devDependencies": {
"assert": "^1.3.0",
"babel-cli": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"browserify": "^13.0.1",
"esdoc": "^0.4.3",
"expect": "^1.20.1",
"expect.js": "^0.3.1",
"mocha": "^2.5.3",
"uglify-js": "^2.6.2"
},
"repository": {
"type": "git",
"url": "https://github.com/svk31/steem-rpc.git"
}
}