forked from StreakYC/react-menu-list
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.79 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "react-menu-list",
"version": "7.2.1",
"description": "React component for menu lists and submenus",
"main": "js/index.js",
"sideEffects": false,
"scripts": {
"build": "yarn prepare && yarn example-build && example-build-prod",
"prepare": "rimraf js && babel -s inline -d js/ src/ --ignore '**/*.test.js' && flow-copy-source -v src js --ignore '**/*.test.*'",
"example-build": "cross-env NODE_ENV=development browserify -t babelify -do example/bundle.js example/main.js",
"example-watch": "cross-env NODE_ENV=development watchify -v -t babelify -do example/bundle.js example/main.js",
"example-build-prod": "cross-env NODE_ENV=production browserify -t babelify -do example/bundle.js example/main.js",
"test": "yarn run lint && yarn run flow_check && jest && tsc",
"flow_check": "flow check",
"lint": "eslint .",
"lint-fix": "eslint . --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/StreakYC/react-menu-list.git"
},
"keywords": [
"react",
"react-component",
"menu",
"submenu"
],
"files": [
"js",
"index.d.ts"
],
"author": "Chris Cowan <agentme49@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/StreakYC/react-menu-list/issues"
},
"homepage": "https://github.com/StreakYC/react-menu-list#readme",
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"@types/react": "^17.0.27",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^27.2.4",
"babelify": "^10.0.0",
"browserify": "^17.0.0",
"cross-env": "^7.0.2",
"eslint": "^7.8.1",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-react": "^7.4.0",
"flow-bin": "^0.133.0",
"flow-copy-source": "^2.0.2",
"husky": "^4.3.0",
"jest": "^27.2.4",
"lint-staged": "^10.5.4",
"prettier": "^2.1.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-test-renderer": "^17.0.2",
"rimraf": "^3.0.0",
"typescript": "^4.8.3",
"watchify": "^4.0.0"
},
"dependencies": {
"@babel/runtime": "^7.0.0",
"array-find-index": "1.0.2",
"kefir": "^3.5.1",
"kefir-bus": "^2.2.0",
"kefir-stopper": "^2.1.0",
"prop-types": "^15.6.0",
"react-float-anchor": "https://github.com/zoom-studio/react-float-anchor.git"
},
"peerDependencies": {
"react": "^16.6.0 || ^17.0.0",
"react-dom": "^16.6.0 || ^17.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,md,ts}": "prettier --write"
}
}