forked from EdgeApp/airbitz-core-node-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 976 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 976 Bytes
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": "airbitz-io-node-js",
"version": "0.3.0",
"description": "IO dependencies for running airbitz-core-js on node.js",
"homepage": "https://airbitz.co",
"license": "SEE LICENSE IN LICENSE",
"author": "Airbitz, Inc.",
"contributors": [
"William Swanson <william@airbitz.co>"
],
"files": [
"lib/*"
],
"main": "lib/airbitz-io-node-js.cjs.js",
"module": "lib/airbitz-io-node-js.es6.js",
"repository": {
"type": "git",
"url": "git@github.com:Airbitz/airbitz-io-node-js.git"
},
"scripts": {
"build": "rollup -c",
"precommit": "npm run lint",
"lint": "standard '*.js' 'src/**/*.js'",
"prepublish": "npm run lint && npm run build"
},
"dependencies": {
"disklet": "^0.1.2",
"node-fetch": "^1.6.3"
},
"devDependencies": {
"husky": "^0.13.3",
"rollup": "^0.43.0",
"rollup-plugin-buble": "^0.15.0",
"standard": "^10.0.1"
},
"peerDependencies": {
"airbitz-core-js": "^0.3.1"
}
}