-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.35 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": "react-textcompleter",
"version": "0.4.1",
"description": "React multi-autocompleter for text inputs",
"main": "build/index.js",
"scripts": {
"dev": "webpack-dev-server --content-base examples/ --port 3000 --hot --inline --progress",
"lint": "node_modules/eslint/bin/eslint.js src/*",
"build": "babel -d ./build ./src",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/jnoleau/react-textcompleter.git"
},
"keywords": [
"react",
"autocomplete",
"textarea"
],
"author": "Julien Noleau <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jnoleau/react-textcompleter/issues"
},
"homepage": "https://github.com/jnoleau/react-textcompleter",
"peerDependencies": {
"react": "^0.14.0",
"react-dom": "^0.14.0"
},
"devDependencies": {
"babel": "^5.8.21",
"babel-core": "^5.8.22",
"babel-eslint": "^4.0.10",
"babel-loader": "^5.3.2",
"css-loader": "^0.16.0",
"eslint": "^1.2.1",
"eslint-plugin-react": "^3.2.3",
"material-ui": "^0.13.4",
"react": "^0.14.3",
"react-dom": "^0.14.3",
"react-highlighter": "^0.2.2",
"react-hot-loader": "^1.2.8",
"react-tap-event-plugin": "^0.2.1",
"style-loader": "^0.12.3",
"webpack": "^1.11.0",
"webpack-dev-server": "^1.10.1"
}
}