-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.14 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.14 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
43
44
45
46
{
"name": "electrum-network-plugin",
"version": "1.0.0",
"description": "cordova plugin for accessing the electrum network",
"main": "build/bundle.js",
"typings": "index.d.ts",
"scripts": {
"build": "rollup -c",
"test": "npm run build && karma start",
"integration": "./prepare-integration-tests.sh"
},
"keywords": [
"ecosystem:cordova",
"cordova-android",
"cordova-ios",
"cordova",
"bitcoin",
"electrum"
],
"cordova": {
"id": "electrum-network-plugin",
"platforms": [
"android",
"ios"
]
},
"author": "Stefan Huber <stefan.huber@beyondit.at>",
"license": "Apache-2.0",
"devDependencies": {
"jasmine-core": "^2.5.2",
"karma": "^0.13.22",
"karma-jasmine": "^1.0.2",
"karma-phantomjs-launcher": "^1.0.0",
"phantomjs-prebuilt": "^2.1.7",
"rollup": "^0.36.3",
"rollup-plugin-commonjs": "^5.0.5",
"rollup-plugin-node-builtins": "^2.0.0",
"rollup-plugin-node-globals": "^1.0.9",
"rollup-plugin-typescript": "^0.8.1"
},
"dependencies": {
"@types/cordova": "0.0.34",
"@types/es6-shim": "^0.31.32",
"@types/node": "^6.0.46"
}
}