forked from magiclabs/magic-admin-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.07 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
{
"name": "@magic-sdk/admin",
"version": "1.9.2",
"description": "Magic Authentication Admin Javascript SDK.",
"author": "Magic Labs <[email protected]>",
"license": "MIT",
"repository": "magiclabs/magic-admin-js",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/cjs/index.d.ts",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"files": [
"dist/**/*"
],
"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",
"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/jest": "^27.4.1",
"@types/node": "^13.1.2",
"@types/node-fetch": "^2.5.4",
"@typescript-eslint/eslint-plugin": "^2.15.0",
"auto": "^9.60.1",
"boxen-cli": "^1.0.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",
"jest": "^27.5.1",
"lint-staged": "^10.0.8",
"npm-run-all": "~4.1.5",
"prettier": "^1.19.1",
"rimraf": "~3.0.0",
"ts-jest": "^27.1.3",
"ts-node": "~8.5.2",
"tslint": "~5.20.1",
"typescript": "~3.8.3"
},
"dependencies": {
"@types/atob": "^2.1.2",
"atob": "^2.1.2",
"ethereum-cryptography": "^1.0.1",
"node-fetch": "^2.6.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": "eslint --fix"
},
"auto": {
"plugins": [
"npm",
"released"
]
}
}