forked from webscopeio/react-textarea-autocomplete
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.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
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": "@webscopeio/react-textarea-autocomplete",
"version": "1.1.3",
"description": "Offers autocomplete over textarea in style of GitHub.",
"repository": {
"type": "git",
"url": "https://github.com/webscopeio/react-textarea-autocomplete"
},
"author": "Jakub Benes <[email protected]>",
"main": "dist/index.js",
"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": "rollup -c",
"prepublish": "npm run build",
"lint": "eslint --ext=js --ext=jsx ./src",
"lint:fix": "npm run lint -- --fix",
"test": "jest",
"test:watch": "jest --watch",
"dev": "npm run build -- --watch",
"ci": "flow && jest",
"precommit": "lint-staged"
},
"devDependencies": {
"babel-core": "6.25.0",
"babel-eslint": "7.2.3",
"babel-plugin-external-helpers": "6.22.0",
"babel-plugin-transform-runtime": "6.23.0",
"babel-polyfill": "6.23.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-es2015-rollup": "3.0.0",
"babel-preset-flow": "6.23.0",
"babel-preset-react": "6.24.1",
"babel-preset-stage-0": "6.24.1",
"enzyme": "2.9.1",
"eslint": "3.19.0",
"eslint-config-airbnb": "15.0.2",
"eslint-plugin-babel": "4.1.1",
"eslint-plugin-flowtype": "2.35.0",
"eslint-plugin-import": "2.7.0",
"eslint-plugin-jsx-a11y": "5.1.1",
"eslint-plugin-react": "7.1.0",
"flow-bin": "0.49.1",
"husky": "0.14.2",
"jest": "20.0.4",
"lint-staged": "4.0.0",
"prettier": "1.5.2",
"react": "15.6.1",
"react-addons-test-utils": "15.6.0",
"react-dom": "15.6.1",
"react-test-renderer": "15.6.1",
"rollup": "0.45.2",
"rollup-plugin-async": "1.2.0",
"rollup-plugin-babel": "2.7.1",
"rollup-plugin-commonjs": "8.0.2",
"rollup-plugin-css-only": "0.2.0",
"rollup-plugin-hypothetical": "1.2.1",
"rollup-plugin-license": "0.4.0",
"rollup-plugin-node-resolve": "3.0.0",
"rollup-plugin-uglify": "2.0.1",
"rollup-watch": "4.3.1"
},
"peerDependencies": {
"prop-types": ">=15",
"react": ">=15"
},
"dependencies": {
"textarea-caret": "3.0.2"
},
"lint-staged": {
"src/*.{js,jsx}": [
"eslint --fix",
"prettier --single-quote --trailing-comma all --write",
"git add"
]
},
"jest": {
"moduleNameMapper": {
"\\.(css|scss)$": "<rootDir>/__mocks__/styleMock.js"
}
}
}