This repository has been archived by the owner on May 10, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
77 lines (77 loc) · 2.96 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "uport-transports",
"version": "0.2.7-dev.4",
"description": "Set up communication channels between your app and a uPort client to handle requests and responses",
"main": "lib/index.js",
"scripts": {
"build:dist": "./node_modules/.bin/webpack --config webpack.config.js",
"build:es5": "./node_modules/.bin/babel src -d lib --ignore assets && npm run build:ui",
"build:ui": "./node_modules/.bin/webpack --config webpack.ui.config.js",
"build": "npm run build:es5 && npm run build:dist",
"start": "webpack-dev-server --config webpack.config.dev.js --hot",
"test": "./node_modules/.bin/mocha test/index.js",
"test:watch": "./node_modules/.bin/mocha --watch test/index.js",
"build:docs:html": "./node_modules/.bin/jsdoc *.js -d docs",
"build:docs:md": "./node_modules/.bin/jsdoc2md -f src/* src/transport/* src/transport/ui/* src/message/* src/network/* -t template.hbs -c js2doc.conf > docs/reference/index.md; echo",
"build:docs": "npm run build:docs:html && npm run build:docs:md",
"lint": "eslint ./src",
"format": "eslint --fix ./src",
"prepare": "npm run build && npm t"
},
"author": "Zach Ferland <zach.ferland@consensys.net> (http://consensys.net/)",
"license": "Apache-2.0",
"dependencies": {
"async": "^2.6.0",
"base64url": "^3.0.1",
"did-jwt": "0.1.1",
"mnid": "^0.1.1",
"mobile-detect": "^1.4.3",
"nets": "^3.2.0",
"pubsub-js": "^1.7.0",
"qr-image": "^3.1.0",
"qs": "^6.2.1",
"tweetnacl": "^1.0.0",
"tweetnacl-util": "^0.15.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.21.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^7.1.4",
"babel-plugin-external-helpers": "^6.18.0",
"babel-plugin-syntax-object-rest-spread": "^6.13.0",
"babel-plugin-transform-es2015-modules-umd": "^6.18.0",
"babel-plugin-transform-es2015-template-literals": "^6.8.0",
"babel-plugin-transform-es3-member-expression-literals": "^6.8.0",
"babel-plugin-transform-es3-property-literals": "^6.8.0",
"babel-plugin-transform-object-rest-spread": "^6.22.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-2": "^6.24.1",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"eslint": "^5.7.0",
"eslint-config-prettier": "^3.1.0",
"eslint-config-standard": "^12.0.0",
"eslint-config-uport": "0.0.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^3.2.0",
"jsdoc": "^3.4.3",
"jsdoc-to-markdown": "^4.0.1",
"json-loader": "^0.5.4",
"mocha": "^5.1.1",
"prettier": "^1.14.3",
"proxyquire": "^2.0.1",
"raw-loader": "^0.5.1",
"sinon": "^4.5.0",
"sinon-chai": "^3.0.0",
"url-loader": "^1.0.1",
"webpack": "2.3.3",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^2.11.2"
}
}