forked from uport-project/uport-connect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
184 lines (184 loc) · 5.71 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
{
"name": "uport-connect",
"version": "0.6.5",
"description": "Library for integrating uPort into your app frontend",
"main": "lib/index.js",
"scripts": {
"lint": "./node_modules/.bin/standard --verbose src | ./node_modules/.bin/snazzy",
"build:npm": "npm run build-es5 && npm run build-dist && npm run build-dist-prod",
"build": "yarn build-es5 && yarn build-dist && yarn build-dist-prod",
"build-es5": "./node_modules/.bin/babel src -d lib",
"build-dist": "./node_modules/.bin/webpack --config webpack.config.js",
"build-dist-prod": "./node_modules/.bin/webpack --config webpack.prod-config.js",
"watch": "./node_modules/.bin/webpack --config webpack.config.js -w",
"testrpc": "./node_modules/.bin/testrpc",
"test": "./node_modules/.bin/mocha && npm run karma",
"autotest": "./node_modules/.bin/supervisor -q -n exit -x ./node_modules/.bin/mocha -- --reporter spec",
"karma-watch": "node karmawrapper start test/karma.conf.js --browsers Chrome",
"karma": "node karmawrapper start test/karma.conf.js --single-run --browsers Chrome",
"karma-CI": "node karmawrapper start test/karmaCI.conf.js",
"karma-CI-integration": "cd integration-test && ./setup && cd .. && node karmawrapper start integration-test/karma.conf.js --single-run --browsers PhantomJS",
"prepublish": "npm run build-es5",
"post-release": "node prwrapper",
"semantic-release": "semantic-release pre && npm publish && semantic-release post && npm run post-release",
"build:docs:html": "./node_modules/.bin/jsdoc src/* README.md -d docs",
"build:docs:md": "./node_modules/jsdoc-to-markdown/bin/cli.js src/* > DOCS.md",
"build:docs": "npm run build:docs:html && npm run build:docs:md",
"commitmsg": "validate-commit-msg"
},
"repository": {
"type": "git",
"url": "https://github.com/uport-project/uport-connect.git"
},
"keywords": [
"uport",
"identity",
"self-sovereign",
"ethereum",
"bitcoin",
"consensys",
"web3",
"ipfs",
"persona"
],
"author": "Christian Lundkvist <christian.lundkvist@consensys.net> (http://consensys.net/)",
"license": "ISC",
"contributors": [
{
"name": "Christian Lundkvist",
"email": "christian.lundkvist@consensys.net",
"url": "http://consensys.net/"
},
{
"name": "Jeff Scott Ward",
"email": "jeffscottward@consensys.net",
"url": "http://consensys.net/"
},
{
"name": "Joel Torstensson",
"email": "joel.torstensson@consensys.net",
"url": "http://consensys.net/"
},
{
"name": "Zach Ferland",
"email": "zach.ferland@consensys.net",
"url": "http://consensys.net/"
},
{
"name": "Pelle Braendgaard",
"email": "pelle.braendgaard@consensys.net",
"url": "http://consensys.net/"
}
],
"bugs": {
"url": "https://github.com/uport-project/uport-connect/issues"
},
"files": [
"dist",
"src",
"lib",
"utils"
],
"homepage": "https://github.com/uport-project/uport-connect#readme",
"standard": {
"ignore": [
"dist/**"
],
"globals": [
"describe",
"it",
"before",
"after",
"should"
]
},
"dependencies": {
"async": "^2.1.4",
"ethjs-abi": "^0.1.8",
"ethjs-util": "^0.1.3",
"ipfs-mini": "^1.0.1",
"json-loader": "^0.5.4",
"jsontokens": "^0.6.5",
"mnid": "^0.1.1",
"mobile-detect": "^1.3.5",
"nets": "^3.2.0",
"qr-image": "^3.1.0",
"qs": "^6.2.1",
"request": "^2.75.0",
"uport": "^0.4.2",
"web3": "^0.18.2"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.21.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.10",
"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-register": "^6.18.0",
"chai": "^3.5.0",
"codecov": "^1.0.1",
"condition-circle": "^1.5.0",
"cz-conventional-changelog": "^1.2.0",
"eslint": "^3.2.2",
"eth-lightwallet": "^2.4.3",
"ethereumjs-testrpc": "^3.0.3",
"ethereumjs-tx": "^1.1.1",
"istanbul": "^0.4.5",
"istanbul-instrumenter-loader": "0.2.0",
"jsdoc": "^3.4.3",
"jsdoc-to-markdown": "^1.3.7",
"json-loader": "^0.5.4",
"karma": "^1.5.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.1.1",
"karma-firefox-launcher": "^1.0.0",
"karma-mocha": "^1.2.0",
"karma-mocha-reporter": "^2.2.0",
"karma-phantomjs-launcher": "^1.0.2",
"karma-safari-launcher": "^1.0.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.3",
"mocha": "^3.0.2",
"phantomjs-polyfill-object-assign": "^0.0.2",
"phantomjs-prebuilt": "^2.1.14",
"publish-release": "^1.3.2",
"reify": "^0.3.8",
"semantic-release": "^4.3.5",
"sinon": "git+https://github.com/sinonjs/sinon.git#afdf4255e97e8a8738da19ddfafd18efc09c917a",
"snazzy": "^5.0.0",
"standard": "^8.0.0-beta.5",
"supervisor": "^0.12.0",
"webpack": "2.3.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
},
"validate-commit-msg": {
"types": [
"feat",
"fix",
"docs",
"style",
"refactor",
"perf",
"test",
"chore",
"revert",
"ci",
"build"
]
}
},
"release": {
"verifyConditions": "condition-circle"
}
}