-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
63 lines (63 loc) · 1.98 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
{
"name": "react-bounding-box",
"version": "0.5.21",
"description": "React Bounding Box Component",
"repository": {
"type": "git",
"url": "https://github.com/alx/react-bounding-box.git"
},
"bugs": {
"url": "https://github.com/alx/react-bounding-box/issues"
},
"license": "MIT",
"scripts": {
"build": "webpack src/react-bounding-box.js dist/react-bounding-box.js",
"prepare": ". ./.scripts/prepublish.sh",
"lint": "eslint src",
"lintfix": "eslint src --fix",
"testonly": "mocha --require .scripts/mocha_runner src/**/tests/**/*.js",
"test": "npm run lint && npm run testonly",
"test-watch": "npm run testonly -- --watch --watch-extensions js",
"storybook": "start-storybook -p 6006 -s ./stories",
"publish-storybook": "bash .scripts/publish_storybook.sh",
"build-storybook": "build-storybook"
},
"devDependencies": {
"@sambego/storybook-state": "^2.0.1",
"@storybook/addon-actions": "^5.3.13",
"@storybook/addon-links": "^5.3.13",
"@storybook/addons": "^5.3.13",
"@storybook/react": "^5.3.13",
"babel-cli": "^6.26.0",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"babel-runtime": "^6.11.6",
"eslint": "^4.18.2",
"eslint-config-airbnb": "^15.0.2",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.1.0",
"html-webpack-plugin": "^3.2.0",
"react": "^16.3.1",
"react-dom": "^16.3.1",
"webpack": "^2.5.1"
},
"peerDependencies": {
"react": "^16.3.1"
},
"dependencies": {
"prop-types": "^15.6.1",
"seedrandom": "^2.4.3"
},
"main": "dist/react-bounding-box.js",
"engines": {
"npm": "^3.0.0"
}
}