forked from jasonkuhrt/react-popover
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
59 lines (59 loc) · 1.83 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
{
"license": "MIT",
"scripts": {
"build-examples": "webpack --colors --config webpack.examples.config.babel.js",
"deploy-demo": "git checkout gh-pages && git merge master --no-edit && npm run build-examples && git commit -am 'Update demo' && git push && git checkout master",
"build": "rm -rf build && babel --out-dir build lib",
"dev": "npm start",
"test": "testem",
"start": "webpack-dev-server --colors --hot --config webpack.examples.config.babel.js",
"prepublish": "npm run build",
"postversion": "git push && git push --tags && npm publish"
},
"dependencies": {
"css-vendor": "^0.3.1",
"debug": "^2.1.3",
"lodash.throttle": "^3.0.3",
"object.assign": "^4.0.1"
},
"repository": {
"type": "git",
"url": "https://github.com/littlebits/react-popover.git"
},
"author": "Jason Kuhrt <[email protected]> (http://jasonkuhrt.com/)",
"name": "react-popover-fork",
"homepage": "https://github.com/littlebits/react-popover",
"version": "0.6.4",
"main": "build/index.js",
"description": "A specification backed popover for react",
"devDependencies": {
"babel": "^5.8.23",
"babel-loader": "^5.3.2",
"bluebird": "^3.0.5",
"bootstrap-webpack-plugin": "^0.2.2",
"chai": "^3.2.0",
"coffee-loader": "^0.7.2",
"coffee-script": "^1.9.1",
"css-loader": "^0.17.0",
"eslint": "^1.5.0",
"eslint-config-littlebits": "^0.2.1",
"ramda": "^0.18.0",
"react": "^0.14.0",
"react-dom": "^0.14.0",
"react-draggable": "^1.1.1",
"react-hot-loader": "^1.2.4",
"react-tappable": "^0.7.1",
"style-loader": "^0.12.3",
"testem": "^0.9.6",
"webpack": "^1.12.1",
"webpack-dev-server": "^1.10.1"
},
"bugs": {
"url": "https://github.com/littlebits/react-popover/issues"
},
"eslintConfig": {
"extends": [
"littlebits"
]
}
}