This repository has been archived by the owner on Apr 10, 2024. It is now read-only.
forked from jasonkuhrt/react-popover
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.33 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"license": "MIT",
"version": "0.4.16",
"scripts": {
"clean": "rm -rf build",
"build-examples": "yarn run clean && webpack",
"deploy-demos": "git checkout gh-pages && git merge master --no-edit && yarn run build-examples && git add -A && git commit -m 'Update demos' && git push && git checkout master",
"build": "yarn run clean && babel --out-dir build lib",
"dev": "yarn start",
"test": "jest",
"test-dev": "jest --watch",
"start": "webpack-dev-server --hot",
"postversion": "yarn run build && git push && git push --tags && npm publish && release",
"postinstall" : "npm run build"
},
"dependencies": {
"create-react-class": "^15.5.3",
"css-vendor": "^0.3.1",
"debug": "^2.6.8",
"lodash.throttle": "^3.0.3",
"prop-types": "^15.5.10"
},
"repository": {
"type": "git",
"url": "https://github.com/littlebits/react-popover.git"
},
"author": "Jason Kuhrt <[email protected]> (http://jasonkuhrt.com/)",
"name": "react-popover",
"homepage": "https://github.com/littlebits/react-popover",
"main": "build/index.js",
"description": "A specification backed popover for react",
"devDependencies": {
"babel-cli": "^6.3.15",
"babel-core": "^6.3.15",
"babel-eslint": "^7.1.1",
"babel-jest": "^20.0.3",
"babel-loader": "^6.2.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-1": "^6.3.13",
"bluebird": "^3.0.5",
"bootstrap-webpack-plugin": "^0.3.0",
"chai": "^3.2.0",
"classnames": "^2.2.1",
"css-loader": "^0.17.0",
"cssnext-loader": "^1.0.1",
"eslint": "^3.17.1",
"eslint-config-littlebits": "^0.6.2",
"jest": "^19.0.2",
"jest-cli": "^19.0.2",
"ramda": "^0.18.0",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-draggable": "^1.1.1",
"react-hot-loader": "^1.2.4",
"react-tappable": "^0.7.1",
"react-test-renderer": "^15.4.2",
"release": "^1.1.7",
"style-loader": "^0.12.3",
"webpack": "^1.12.1",
"webpack-dev-server": "^1.10.1"
},
"bugs": {
"url": "https://github.com/littlebits/react-popover/issues"
},
"eslintConfig": {
"parser": "babel-eslint",
"extends": [
"littlebits"
],
"env": {
"jest": true
}
},
"babel": {
"presets": [
"es2015",
"react",
"stage-1"
]
}
}