forked from tappleby/react-typeahead-component
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 2.02 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
{
"name": "@tappleby/react-typeahead-component",
"description": "Typeahead, written using the React.js library.",
"author": "Ezequiel Rodriguez <ezequiel@yahoo.com>",
"version": "0.10.0-alpha2",
"main": "./lib/index.js",
"license": "MIT",
"bugs": "https://github.com/ezequiel/react-typeahead-component/issues",
"repository": {
"type": "git",
"url": "https://github.com/ezequiel/react-typeahead-component.git"
},
"keywords": [
"react",
"reactjs",
"typeahead",
"autocomplete",
"react-component",
"component"
],
"files": [
"dist",
"src",
"lib"
],
"scripts": {
"build": "npm run build:lib && npm run dist:dev && npm run dist:min",
"build:lib": "babel src --out-dir lib",
"clean": "rimraf lib dist",
"dist:dev": "webpack src/index.js dist/react-typeahead-component.dev.js --config webpack.config.development.js",
"dist:min": "webpack src/index.js dist/react-typeahead-component.min.js --config webpack.config.production.js",
"prepublish": "npm run clean && npm run build",
"test": "karma start",
"test:dev": "karma start --no-single-run --browsers Chrome"
},
"peerDependencies": {
"react": ">=0.14.0 <1.0.0"
},
"devDependencies": {
"babel-cli": "^6.3.17",
"babel-core": "^6.3.17",
"babel-loader": "^6.2.0",
"babel-preset-react": "^6.3.13",
"insert-css": "^0.2.0",
"karma": "^0.13.15",
"karma-babel-preprocessor": "^6.0.1",
"karma-chrome-launcher": "^0.2.2",
"karma-cli": "^0.1.1",
"karma-firefox-launcher": "^0.1.4",
"karma-ie-launcher": "^0.2.0",
"karma-mocha": "^0.2.1",
"karma-mocha-reporter": "^1.0.2",
"karma-opera-launcher": "^0.3.0",
"karma-phantomjs-launcher": "^0.2.1",
"karma-safari-launcher": "^0.1.1",
"karma-sinon-chai": "^1.1.0",
"karma-sourcemap-loader": "^0.3.6",
"karma-webpack": "^1.7.0",
"mocha": "^2.2.4",
"react": "^0.14.3",
"react-addons-test-utils": "^0.14.3",
"react-dom": "^0.14.3",
"rimraf": "^2.4.4",
"webpack": "^1.12.9"
}
}