-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.71 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.71 KB
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
{
"name": "shopify-passwordless-login",
"version": "1.2.0",
"description": "The simplest way to add passwordless authentication to your Shopify store",
"source": "src/index.ts",
"main": "dist/index.ts",
"types": "dist/index.d.ts",
"module": "dist/index.module.ts",
"unpkg": "dist/index.umd.ts",
"repository": "git@github.com:DimensionSoftware/shopify-passwordless-login.git",
"author": "Dimension Software <support@dimensionsoftware.com> (https://dimensionsofware.com)",
"homepage": "https://github.com/DimensionSoftware/shopify-passwordless-login",
"license": "MIT",
"private": false,
"scripts": {
"build": "microbundle src/*",
"prepare": "yarn run build",
"dev": "microbundle watch src/*"
},
"files": [
"src",
"dist"
],
"dependencies": {
"node-fetch": "^2.6.0"
},
"devDependencies": {
"@types/node-fetch": "^2.5.3",
"@types/query-string": "^6.3.0",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.16.0",
"microbundle": "^0.11.0",
"prettier": "^1.18.2",
"query-string": "^6.8.3",
"react": "^16.8.6"
},
"peerDependencies": {
"react": "^16.11.0"
},
"eslintConfig": {
"extends": [
"plugin:prettier/recommended",
"plugin:react/recommended"
],
"env": {
"browser": true,
"es6": true
},
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parserOptions": {
"ecmaVersion": 2018
}
}
}