-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 836 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 836 Bytes
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
{
"name": "@parameter1/deferred-script-loader",
"version": "1.0.1",
"type": "module",
"main": "src/index.js",
"repository": "https://github.com/parameter1/deferred-script-loader.git",
"author": "Jacob Bare <jacob@parameter1.com>",
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "vite build",
"postbuild": "terser -c --module ./dist/lib.js > ./dist/lib.min.js",
"preview": "vite preview",
"lint": "eslint --ext .js ./",
"test": "yarn lint"
},
"devDependencies": {
"eslint": "^8.34.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-compat": "^4.1.2",
"eslint-plugin-import": "^2.27.5",
"terser": "^5.16.4",
"vite": "^4.1.2"
},
"browserslist": [
"chrome 64",
"edge 79",
"safari 11.1",
"firefox 67",
"opera 51",
"ios 12"
]
}