-
Notifications
You must be signed in to change notification settings - Fork 240
/
package.json
79 lines (79 loc) · 2.01 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
{
"license": "MIT",
"version": "0.5.10",
"scripts": {
"clean": "rm -rf build",
"deploy-storybook": "storybook-to-ghpages",
"build": "yarn run clean && babel --out-dir build source",
"dev": "start-storybook -p 6006",
"postversion": "yarn run build && git push && git push --tags && npm publish && release",
"build-storybook": "build-storybook"
},
"dependencies": {
"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": "index.js",
"description": "A specification backed popover for react",
"devDependencies": {
"@storybook/addon-actions": "^3.2.11",
"@storybook/addon-links": "^3.2.10",
"@storybook/react": "^3.2.11",
"@storybook/storybook-deployer": "^2.0.0",
"babel-cli": "^6.3.15",
"babel-core": "^6.3.15",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-1": "^6.3.13",
"eslint": "^3.17.1",
"eslint-config-littlebits": "^0.6.2",
"husky": "^0.14.3",
"prettier": "^1.13.5",
"pretty-quick": "^1.6.0",
"ramda": "^0.18.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-draggable": "3.0.3",
"react-test-renderer": "16",
"release": "^4.0.0"
},
"bugs": {
"url": "https://github.com/littlebits/react-popover/issues"
},
"eslintConfig": {
"parser": "babel-eslint",
"extends": [
"littlebits"
],
"env": {
"jest": true
}
},
"babel": {
"presets": [
"es2015",
"react",
"stage-1"
]
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"prettier": {
"semi": false,
"trailingComma": "all"
}
}