-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
55 lines (55 loc) · 1.66 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
{
"name": "shopify-push-notifications",
"version": "1.1.3",
"description": "The simplest way to add push notifications 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": "[email protected]:DimensionSoftware/shopify-push-notifications.git",
"author": "Dimension Software <[email protected]> (https://dimensionsofware.com)",
"homepage": "https://github.com/DimensionSoftware/shopify-push-notifications",
"license": "MIT",
"private": false,
"scripts": {
"build": "microbundle --inline all --target node src/*",
"prepare": "yarn run build",
"dev": "microbundle --target node watch src/*"
},
"files": [
"src",
"dist"
],
"dependencies": {
"node-forge": "^0.9.1",
"query-string": "^6.8.3"
},
"devDependencies": {
"@types/node-fetch": "^2.5.2",
"@types/query-string": "^6.3.0",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.16.0",
"microbundle": "^0.11.0",
"prettier": "^1.18.2"
},
"peerDependencies": {
"node-fetch": "^2.6.0"
},
"eslintConfig": {
"extends": [
"plugin:prettier/recommended",
"plugin:react/recommended"
],
"env": {},
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parserOptions": {
"ecmaVersion": 2018
}
}
}