-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
95 lines (95 loc) · 2.5 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
{
"name": "passport-magic",
"version": "1.0.0",
"description": "Passport JS strategy for authentication with Magic.",
"author": "Fortmatic <team@fortmatic.com> (https://fortmatic.com/)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/fortmatic/passport-magic"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"start": "npm run clean:build && ./scripts/start.sh",
"build": "npm run clean:build && ./scripts/build.sh",
"test": "npm run clean:test-artifacts && ./scripts/test.sh",
"lint": "eslint --fix src/**/*.ts",
"clean": "npm-run-all -s clean:*",
"clean:test-artifacts": "rimraf coverage && rimraf .nyc_output",
"clean:build": "rimraf dist",
"clean_node_modules": "rimraf node_modules"
},
"devDependencies": {
"@ikscodes/eslint-config": "^6.2.0",
"@ikscodes/prettier-config": "^1.0.0",
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/eth-sig-util": "^2.1.0",
"@types/express": "^4.17.2",
"@types/node": "^13.1.2",
"@types/node-fetch": "^2.5.4",
"@types/passport-local": "^1.0.33",
"@types/passport-strategy": "^0.2.35",
"@types/sinon": "^7.5.2",
"@typescript-eslint/eslint-plugin": "^2.15.0",
"ava": "^3.4.0",
"eslint": "^6.7.2",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.15.1",
"eslint-plugin-react-hooks": "^1.7.0",
"husky": "^4.2.3",
"lint-staged": "^10.0.8",
"npm-run-all": "~4.1.5",
"nyc": "^15.0.0",
"prettier": "^1.19.1",
"rimraf": "~3.0.0",
"sinon": "^9.0.0",
"ts-node": "~8.5.2",
"tslint": "~5.20.1",
"typescript": "~3.8.3"
},
"dependencies": {
"@magic-sdk/admin": "^1.0.0",
"express": "^4.17.1",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"passport-strategy": "^1.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": "eslint --fix"
},
"ava": {
"require": [
"ts-node/register"
],
"files": [
"test/**/*.spec.ts"
],
"extensions": [
"ts"
],
"verbose": true
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"all": false,
"check-coverage": true,
"per-file": true,
"lines": 99,
"statements": 99,
"functions": 99,
"branches": 99,
"reporter": [
"html",
"lcov"
]
}
}