-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.52 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.52 KB
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
{
"name": "react-tabindex",
"version": "1.0.3",
"author": "TechStyle Open Source <tfg.devops@techstyle.com>",
"repository": "Techstyle-Open-Source/react-tabindex",
"license": "Apache-2.0",
"engines": {
"node": ">=10.0.0"
},
"files": [
"dist"
],
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"sideEffects": false,
"scripts": {
"build": "npm run build:dist",
"build:dist": "rollup -c",
"clean": "rimraf dist",
"format": "prettier --write \"**/*.{js,json,md}\"",
"prebuild": "npm run clean",
"postbuild": "npm run size",
"prepare": "npm run build",
"size": "bundlesize",
"test": "jest --coverage",
"test:only": "jest"
},
"bundlesize": [
{
"path": "dist/index.cjs.min.js",
"compression": "none",
"maxSize": "1 kB"
},
{
"path": "dist/index.cjs.min.js",
"maxSize": "1 kB"
},
{
"path": "dist/index.esm.min.js",
"compression": "none",
"maxSize": "1 kB"
},
{
"path": "dist/index.esm.min.js",
"maxSize": "1 kB"
}
],
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"@babel/preset-react": "^7.8.3",
"@testing-library/jest-dom": "^5.1.1",
"@testing-library/react": "^9.4.0",
"bundlesize": "^0.18.0",
"jest": "^25.1.0",
"prettier": "^1.19.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"rollup": "^1.31.1",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-terser": "^5.2.0"
}
}