forked from webscopeio/react-textarea-autocomplete
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 2.54 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
92
93
94
95
96
97
98
99
{
"name": "@webscopeio/react-textarea-autocomplete",
"version": "1.2.2",
"description": "Offers autocomplete over textarea in style of GitHub.",
"repository": {
"type": "git",
"url": "https://github.com/webscopeio/react-textarea-autocomplete"
},
"files": [
"es6/",
"index.js",
"style.css"
],
"main": "index.js",
"author": "Jakub Benes <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/webscopeio/react-textarea-autocomplete/issues"
},
"homepage": "https://github.com/webscopeio/react-textarea-autocomplete",
"keywords": [
"react-component",
"textarea",
"autocomplete",
"react"
],
"scripts": {
"build": "NODE_ENV=production rollup -c",
"dev": "NODE_ENV=development webpack-dev-server --config webpack.dev.js",
"prepublish": "yarn run build",
"lint": "eslint --ext=js --ext=jsx ./src",
"lint:fix": "yarn run lint -- --fix",
"test": "jest",
"test:watch": "jest --watch",
"flow": "flow",
"flow:check": "flow check",
"cypress": "yarn run dev & cypress run",
"cypress:open": "cypress open",
"precommit": "lint-staged"
},
"devDependencies": {
"@jukben/emoji-search": "^1.1.2",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-polyfill": "^6.26.0",
"babel-preset-react-app": "^3.0.3",
"babel-runtime": "^6.26.0",
"css-loader": "^0.28.7",
"cypress": "^1.0.2",
"enzyme": "^2.9.1",
"eslint": "^4.10.0",
"eslint-config-callstack-io": "^1.0.1",
"flow-bin": "^0.57.3",
"html-webpack-plugin": "^2.30.1",
"husky": "^0.14.3",
"jest": "^21.2.1",
"lint-staged": "^4.3.0",
"prettier": "^1.7.4",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-test-renderer": "^15.6.1",
"rollup": "^0.50.0",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-commonjs": "^8.2.5",
"rollup-plugin-copy": "^0.2.3",
"rollup-plugin-license": "^0.5.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-uglify": "^2.0.1",
"style-loader": "^0.19.0",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.9.3"
},
"peerDependencies": {
"prop-types": ">=15",
"react": ">=15"
},
"dependencies": {
"textarea-caret": "3.0.2"
},
"lint-staged": {
"src/*.{js,jsx}": [
"eslint src --fix",
"git add"
]
},
"jest": {
"setupFiles": [
"<rootDir>/setupJest.js"
],
"moduleNameMapper": {
"\\.(css|scss)$": "<rootDir>/__mocks__/styleMock.js"
}
},
"babel": {
"presets": [
"react-app"
]
}
}