-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.6 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
{
"name": "@sparkbox/safe-focus",
"version": "1.2.6",
"description": "A utility file to add a custom outline style for all selectable components.",
"main": "dist/safe-focus.cjs.js",
"module": "dist/safe-focus.esm.js",
"browser": "dist/safe-focus.umd.js",
"directories": {
"lib": "lib"
},
"scripts": {
"build": "rollup -c",
"lint": "npm run lint:js && npm run lint:style",
"lint:style": "stylelint **.scss --formatter verbose",
"lint:js": "eslint --ignore-path .gitignore .",
"prepublishOnly": "npm run build",
"release": "./script/release.sh",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sparkbox/safe-focus.git"
},
"keywords": [
"safe",
"focus",
"tab"
],
"author": "Ethan Muller <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/sparkbox/safe-focus/issues"
},
"homepage": "https://github.com/sparkbox/safe-focus#readme",
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@rollup/plugin-babel": "^5.0.0",
"@sparkbox/stylelint-config-sparkbox": "^1.0.2",
"babel-jest": "^25.5.1",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"jest": "^25.5.2",
"jest-environment-jsdom-sixteen": "^1.0.3",
"next-standard-version": "^2.1.3",
"rollup": "^1.32.1",
"standard-version": "^9.0.0",
"stylelint": "^13.3.3"
},
"jest": {
"transform": {
"^.+\\.jsx?$": "babel-jest"
}
},
"files": [
"dist",
"index.scss",
"lib/scss"
]
}