forked from matteobad/focus-within-polyfill
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.15 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
{
"name": "focus-within-polyfill",
"version": "5.0.6",
"description": "Small vanilla javascript that feature detect the :focus-within pseudo selector and polyfills it with a standard css class if necessary.",
"main": "dist/focus-within-polyfill.js",
"scripts": {
"commit": "git-cz",
"clean": "rimraf dist",
"lint": "eslint src/**",
"lint:fix": "eslint src/** --fix",
"build": "rollup -c rollup.config.js --environment BUILD:production",
"watch": "rollup -c rollup.config.js --environment BUILD:development -w",
"prepublishOnly": "npm run clean && npm run lint && npm run build && npm run test",
"upgrade": "npm-check --update",
"test": "bundlesize",
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once"
},
"homepage": "https://github.com/matteobad/focus-within-polyfill#readme",
"repository": "https://github.com/matteobad/focus-within-polyfill",
"bugs": "https://github.com/matteobad/focus-within-polyfill/issues",
"keywords": [
"polyfill",
"focus",
"blur",
"focus-within",
"pseudo-class",
"no-jquery",
"vanilla",
"vanilla-js",
"webcomponents",
"shadowRoot"
],
"author": "Matteo Badini",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@ampproject/rollup-plugin-closure-compiler": "^0.14.0",
"@semantic-release/changelog": "^3.0.4",
"@semantic-release/commit-analyzer": "^6.2.0",
"@semantic-release/git": "^7.0.16",
"@semantic-release/github": "^5.4.2",
"@semantic-release/npm": "^5.1.13",
"@semantic-release/release-notes-generator": "^7.2.1",
"bundlesize": "^0.18.0",
"commitizen": "^4.0.3",
"cz-conventional-changelog": "^3.0.2",
"eslint": "^6.1.0",
"eslint-config-google": "^0.14.0",
"husky": "^3.0.1",
"npm-check": "^5.9.0",
"rimraf": "^3.0.0",
"rollup": "^1.19.1",
"semantic-release": "^15.13.18"
},
"bundlesize": [
{
"path": "./dist/*.js",
"maxSize": "1 kB"
}
],
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run test"
}
}
}