-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.6 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
{
"name": "react-factorial-test-documentation",
"version": "0.0.1",
"description": "Generate component test buy using multiplication on parameter sets",
"scripts": {
"test": "jest",
"check": "echo \"TODO: add tests\" && exit 0",
"changelog": "changelogx -f markdown -o ./changelog.md",
"do-changelog": "npm run changelog && git add ./changelog.md && git commit -m 'DOC: Generate changelog' --no-verify",
"install-hooks": "changelogx install-hook",
"pre-v": "npm run check",
"post-v": "npm run do-changelog && git push --no-verify && git push --tags --no-verify",
"bump-major": "npm run pre-v && npm version major -m 'BLD: Release v%s' && npm run post-v",
"bump-minor": "npm run pre-v && npm version minor -m 'BLD: Release v%s' && npm run post-v",
"bump-patch": "npm run pre-v && npm version patch -m 'BLD: Release v%s' && npm run post-v",
"build": "babel src/ -d lib/",
"storybook": "start-storybook -p 6006 -c .storybook -s ./static",
"buildstorybook": "build-storybook -c .storybook -o .out"
},
"repository": {
"type": "git",
"url": "git+https://github.com/react-factorial-test/react-factorial-test-documentation.git"
},
"keywords": [
"test-generation",
"test",
"storybook",
"multiply",
"multiplication",
"factorial"
],
"author": "jason henriksen",
"license": "MIT",
"main": "lib/Grid.js",
"changelogx": {
"ignoreRegExp": [
"BLD: Release",
"DOC: Generate Changelog",
"Generated Changelog"
],
"issueIDRegExp": "#(\\d+)",
"commitURL": "https://github.com/royriojas/mobx-form/commit/{0}",
"authorURL": "https://github.com/{0}",
"issueIDURL": "https://github.com/royriojas/mobx-form/issues/{0}",
"projectName": "mobx-form"
},
"dependencies": {
"@storybook/addon-options": "^3.4.6",
"accounting": "^0.4.1",
"json-stable-stringify": "^1.0.1",
"mdi-react": "^2.1.19",
"react-autobind": "^1.0.6",
"react-factorial-test": "^0.0.20",
"react-json-grid": "1.0.31"
},
"peerDependencies": {
"react": "^16.3.2",
"react-dom": "^16.3.2"
},
"devDependencies": {
"@storybook/react": "^3.4.5",
"babel-cli": "^6.10.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"changelogx": "^1.0.19",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"jest-cli": "^22.4.4",
"storybook-addon-jsx": "^5.3.0",
"storybook-addon-props": "^3.0.4"
}
}