forked from akiroom/react-bootstrap-dialog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.96 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
{
"name": "react-bootstrap-dialog",
"version": "0.11.0",
"description": "The modal-dialog React component with React Bootstrap, alternates `window.confirm` and `window.alert`.",
"repository": {
"type": "git",
"url": "https://github.com/akiroom/react-bootstrap-dialog.git"
},
"license": "MIT",
"author": "akiroom (http://akiyama.akiroom.com/en/)",
"keywords": [
"react",
"bootstrap",
"react-component",
"react-bootstrap",
"dialog",
"alert",
"confirm",
"modal"
],
"scripts": {
"prepublish": ". ./.scripts/prepublish.sh",
"lint": "standard",
"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",
"publish-storybook": "bash .scripts/publish_storybook.sh",
"deploy-storybook": "storybook-to-ghpages",
"build-storybook": "build-storybook"
},
"devDependencies": {
"@kadira/storybook-deployer": "^1.2.0",
"@storybook/addon-actions": "^3.3.12",
"@storybook/addon-links": "^3.3.12",
"@storybook/addons": "^3.3.12",
"@storybook/react": "^3.3.12",
"babel-cli": "^6.23.0",
"babel-core": "^6.26.3",
"babel-loader": "^6.2.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-runtime": "^6.23.0",
"bootstrap": "^4.2.1",
"chai": "^3.5.0",
"enzyme": "^2.2.0",
"git-url-parse": "^6.0.1",
"jsdom": "^8.3.1",
"mocha": "^2.4.5",
"react": "^16.7.0",
"react-addons-test-utils": "^15.6.2",
"react-bootstrap": "^1.0.0-beta.5",
"react-dom": "^16.7.0",
"sinon": "^1.17.3",
"standard": "^8.0.0",
"url-loader": "^0.6.2",
"webpack": "^2.0.0"
},
"peerDependencies": {
"react": "^15.0.0 || ^16.0.0"
},
"dependencies": {},
"main": "dist/index.js",
"engines": {
"npm": "^3.0.0"
}
}