-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
42 lines (42 loc) · 1.3 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
{
"name": "passport-web3",
"version": "0.1.7",
"description": "Web3 authentication strategy for passport.",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"test": "mocha-webpack --webpack-config webpack.config.js --require test/.setup.js test/.setup.js test/**/*.test.js",
"test:watch": "mocha-webpack --watch --webpack-config webpack.config.js --require test/.setup.js test/.setup.js test/**/*.test.js",
"prepare": "npm run build",
"build": "webpack --config webpack.config.js"
},
"author": "Cooper Maruyama <[email protected]>",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/coopermaruyama/passport-web3.git"
},
"dependencies": {
"eth-sig-util": "^1.2.2",
"passport-strategy": "^1.0.0",
"source-map-support": "^0.4.15"
},
"devDependencies": {
"babel-loader": "^7.1.1",
"babel-preset-env": "^1.6.0",
"babel-preset-flow": "^6.23.0",
"chai": "^4.1.0",
"chai-passport-strategy": "^1.0.0",
"eslint": "^4.3.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.1.0",
"mocha": "^3.4.2",
"mocha-webpack": "^1.0.0-rc.1",
"webpack": "^3.4.1",
"webpack-node-externals": "^1.6.0"
}
}