-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 1.82 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
{
"name": "load-script-or-css",
"version": "0.0.3",
"description": "Load a script or stylesheet in the browser asynchronously, returning a Promise",
"scripts": {
"build": "rimraf dist && microbundle src/index.js",
"prebuild": "npm test",
"dev": "microbundle watch src/index.js",
"test": "nyc ava",
"pretest": "xo",
"publish": "standard-version",
"prepublish": "npm run build"
},
"homepage": "https://github.com/AndreasPizsa/load-script-or-css",
"repository": "https://github.com/AndreasPizsa/load-script-or-css.git",
"bugs": "https://github.com/AndreasPizsa/load-script-or-css/issues",
"keywords": [
"load",
"inject",
"script",
"javascript",
"js",
"stylesheet",
"css",
"async",
"asynchronously",
"promise",
"browser"
],
"author": "Andreas Pizsa <hopster@gmail.com> (https://github.com/AndreasPizsa)",
"license": "MIT",
"devDependencies": {
"@andreaspizsa/eslint-config-xo": "^0.2.0",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"ava": "^3.8.1",
"finepack": "^2.10.2",
"husky": "^4.2.5",
"microbundle": "^0.12.0",
"np": "^6.2.3",
"nyc": "^15.0.1",
"rimraf": "^3.0.2",
"standard-version": "^7.1.0",
"xo": "^0.28.0"
},
"xo": {
"semicolon": false,
"space": true,
"extends": [
"@andreaspizsa/eslint-config-xo"
],
"envs": [
"browser"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"browserslist": [
"ie >= 11"
],
"main": "dist/index.js",
"umd:main": "dist/index.umd.js",
"module": "dist/index.m.js",
"esmodule": "dist/index.modern.js",
"types": "dist/index.d.ts",
"files": [
"dist"
]
}