-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
47 lines (47 loc) · 1.32 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
{
"name": "instatype",
"version": "1.0.16",
"description": "Simple React Typeahead",
"main": "lib/instatype.js",
"scripts": {
"build": "npm run build-library && npm run build-script",
"build-library": "NODE_ENV=production TYPE=library webpack --config webpack.config.js",
"build-script": "NODE_ENV=production TYPE=script webpack --config webpack.config.js",
"example": "cd examples/unsplash && npm install && npm run start-dev-dual",
"start": "npm run example",
"prepublish": "npm run build"
},
"peerDependencies": {
"react": ">=0.12.0 <16.0.0"
},
"devDependencies": {
"babel-core": "6.18.2",
"babel-loader": "6.2.8",
"babel-preset-es2015": "6.18.0",
"babel-preset-react": "6.16.0",
"less": "^2.7.1",
"less-loader": "^2.2.3",
"css-loader": "^0.23.1",
"style-loader": "0.13.1",
"raw-loader": "^0.5.1",
"url-loader": "^0.5.7",
"webpack": "1.13.3"
},
"repository": {
"type": "git",
"url": "git://github.com/gragland/instatype.git"
},
"author": "Gabe Ragland <gabe.ragland@gmail.com>",
"license": "MIT",
"bugs": {
"url": "/~https://github.com/gragland/instatype/issues"
},
"keywords": [
"instatype",
"autocomplete",
"typeahead",
"react",
"react-component"
],
"homepage": "/~https://github.com/gragland/instatype"
}