-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
57 lines (57 loc) · 1.56 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
{
"name": "@kofile/react-a11y-menu",
"version": "0.0.0--semantically-released",
"description": "A a11y menu in React.",
"source": "./src/index.tsx",
"main": "./dist/index.js",
"module": "./dist/index.module.js",
"unpkg": "./dist/index.umd.js",
"types": "./dist/index.d.ts",
"author": "Evan Sherwood <evan@sherwood.io>",
"license": "UNLICENSED",
"engines": {
"node": ">=14.18.1"
},
"repository": {
"type": "git",
"url": "https://github.com/kofile/react-a11y-menu"
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "microbundle --jsx React.createElement",
"prepublishOnly": "microbundle --jsx React.createElement",
"release": "semantic-release",
"preview": "parcel serve preview/index.html",
"test": "jest",
"lint": "tslint --project ."
},
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@commitlint/config-conventional": "^7.6.0",
"@types/jest": "^24.0.13",
"@types/react": "^16.8.17",
"@types/react-dom": "^16.8.4",
"babel-jest": "^24.8.0",
"jest": "^24.8.0",
"microbundle": "^0.14.1",
"parcel-bundler": "^1.12.3",
"prettier": "^1.17.1",
"react": "^16.8.0",
"react-dom": "^16.8.6",
"react-test-renderer": "^16.8.6",
"react-testing-library": "^7.0.0",
"semantic-release": "^15.13.12",
"tslint": "^5.16.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.9.10"
},
"peerDependencies": {
"react": "^16.8.0"
}
}