forked from EdgeApp/edge-exchange-plugins
-
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.07 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.07 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": "edge-exchange-plugins",
"version": "0.2.0",
"description": "Exchange-rate sources for the Edge core",
"license": "SEE LICENSE IN LICENSE",
"author": "Edge",
"contributors": [
"MrJLP <MrJLP@users.noreply.github.com>",
"William Swanson <william@edgesecure.co>",
"Paul Puey <paul@edgesecure.co>"
],
"files": [
"changelog.md",
"lib/*"
],
"main": "lib/index.cjs.js",
"module": "lib/index.js",
"repository": {
"type": "git",
"url": "git@github.com:Airbitz/airbitz-exchange-plugins.git"
},
"scripts": {
"build": "rollup -c",
"lint": "standard '*.js' 'src/**/*.js'",
"precommit": "npm run lint",
"prepare": "npm run lint && npm run build",
"test": "rollup -c && node --require reify test/demo.js"
},
"dependencies": {
"iso4217": "^0.2.0"
},
"devDependencies": {
"edge-core-js": "^0.6.7",
"airbitz-io-node-js": "^0.3.0",
"husky": "^0.14.3",
"reify": "^0.12.0",
"rollup": "^0.45.2",
"rollup-plugin-buble": "^0.15.0",
"rollup-plugin-nodent": "^0.1.0",
"standard": "^10.0.2"
}
}