forked from ianmcnally/react-input-completion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.62 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
{
"name": "react-input-completion",
"version": "1.0.2",
"description": "A cross-browser autocomplete component for React",
"repository": "https://www.github.com/imcnally/react-input-completion",
"keywords": [
"react",
"autocomplete",
"input",
"datalist",
"lookahead"
],
"main": "react-input-completion.js",
"scripts": {
"prepublish": "babel src/input-completion.jsx --out-file react-input-completion.js && cp src/input-completion.css ./react-input-completion.css",
"start": "webpack-dev-server --content-base demo/ --port 3000 --hot --inline",
"test": "karma start test/karma.conf.js",
"watch": "npm run test -- --single-run=false",
"lint": "eslint test src && jscs test src"
},
"author": "Ian McNally <ianmcnally@gmail.com>",
"license": "ISC",
"dependencies": {
"react": "^0.14.0",
"react-dom": "^0.14.0"
},
"devDependencies": {
"babel-cli": "^6.1.18",
"babel-core": "^6.1.21",
"babel-jscs": "^2.0.4",
"babel-loader": "^6.1.0",
"babel-preset-es2015": "^6.1.18",
"babel-preset-react": "^6.1.18",
"css-loader": "^0.16.0",
"es5-shim": "^4.3.1",
"eslint": "^1.2.1",
"eslint-plugin-react": "^3.2.3",
"jasmine-core": "^2.3.4",
"jscs": "^2.1.0",
"karma": "^0.13.3",
"karma-mocha": "^0.2.0",
"karma-notify-reporter": "^0.1.1",
"karma-phantomjs-launcher": "^0.2.0",
"karma-sinon-chai": "^1.0.0",
"karma-webpack": "^1.7.0",
"lodash": "^3.10.1",
"phantomjs": "^1.9.17",
"react-addons-test-utils": "^0.14.0",
"style-loader": "^0.12.3",
"webpack": "^1.11.0",
"webpack-dev-server": "^1.10.1"
}
}