-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.31 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
{
"name": "litkey",
"version": "0.1.2",
"description": "Enjoyable keyboard shortcuts",
"main": "dist/index.js",
"module": "dist/index.es.js",
"repository": "https://github.com/varld/litkey",
"author": "Tobias Herber <tobias@herber.space>",
"license": "MIT",
"files": [
"dist",
"readme.md",
"LICENSE"
],
"scripts": {
"test": "jest",
"build": "rollup -c",
"format": "prettier --write 'src/**/*.ts' --write 'tests/**/*.ts' --write 'tests/**/*.tsx'"
},
"peerDependencies": {
"react": "^16.6.0"
},
"dependencies": {
"@testing-library/dom": "^7.11.0",
"is-hotkey": "^0.1.6"
},
"devDependencies": {
"@babel/preset-env": "^7.10.2",
"@rollup/plugin-commonjs": "^13.0.0",
"@rollup/plugin-node-resolve": "^8.0.1",
"@testing-library/jest-dom": "^5.9.0",
"@testing-library/react": "^10.2.1",
"@types/is-hotkey": "^0.1.1",
"@types/jest": "^25.2.3",
"@types/react": "^16.9.35",
"babel": "^6.23.0",
"jest": "^26.0.1",
"prettier": "^2.0.5",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"rollup": "^2.15.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-peer-deps-external": "^2.2.2",
"rollup-plugin-terser": "^6.1.0",
"rollup-plugin-typescript2": "^0.27.1",
"ts-jest": "^26.1.0",
"typescript": "^3.9.5"
}
}