This repository has been archived by the owner on Apr 16, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
117 lines (117 loc) · 3.5 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "@thx/date",
"version": "1.0.5",
"description": "Date controls and utils",
"main": "lib/index.js",
"scripts": {
"build": "npm run clean:lib && npm run clean:dist && npm run build:lib && npm run build:dist && npm run assets:dist",
"build:lib": "babel src --out-dir lib && babel index.server.js --out-file server.js --auxiliary-comment-before=eslint-disable",
"build:dist": "NODE_ENV=production webpack",
"clean:lib": "rimraf ./lib/*",
"clean:dist": "rimraf ./dist/*",
"assets:dist": "rimraf ./dist/*.js && cpy dist/* lib/",
"test": "node --harmony_proxies node_modules/.bin/jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage && cat coverage/lcov.info | coverbadge -o coverage/coverage.svg",
"flow": "flow",
"lint": "eslint *.js src",
"docs": "jsdoc -c jsdoc.json",
"docs:md": "jsdoc2md -c jsdoc.json -f src/*.js > docs/README.md",
"docs:explain": "jsdoc -X -c jsdoc.json",
"validate": "npm ls",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"jest": {
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css)$": "identity-obj-proxy"
}
},
"repository": {
"type": "git",
"url": "https://github.com/thr-consulting/date.git"
},
"keywords": [
"react",
"controls",
"date",
"moment"
],
"author": "Mike Kornelson <[email protected]>",
"license": "MIT",
"devDependencies": {
"@storybook/addon-actions": "^3.2.6",
"@storybook/addon-knobs": "^3.2.6",
"@storybook/addon-storyshots": "^3.2.6",
"@storybook/react": "^3.2.5",
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.0",
"babel-loader": "^7.1.1",
"babel-plugin-flow-react-proptypes": "^5.1.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-jason": "^3.1.0",
"coverbadge": "^0.5.5",
"cpy-cli": "^1.0.1",
"css-loader": "^0.28.4",
"enzyme": "^2.9.1",
"enzyme-to-json": "^1.5.1",
"eslint": "^4.4.1",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-flowtype": "^2.35.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jest": "^21.1.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.2.1",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^0.11.2",
"flow-bin": "^0.54.1",
"identity-obj-proxy": "^3.0.0",
"ink-docstrap": "^1.3.0",
"jest": "^21.1.0",
"jsdoc": "^3.5.4",
"jsdoc-babel": "^0.3.0",
"jsdoc-to-markdown": "^3.0.0",
"precommit-hook-eslint": "^3.0.0",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-formal": "^0.25.4",
"react-test-renderer": "^15.6.1",
"rimraf": "^2.6.2",
"semantic-ui-react": "^0.73.0",
"style-loader": "^0.18.2",
"url-loader": "^0.5.9",
"webpack": "^3.5.4",
"webpack-node-externals": "^1.6.0"
},
"peerDependencies": {
"react": "^15.5.0",
"react-dom": "^15.6.0",
"semantic-ui-react": "^0.73.0"
},
"dependencies": {
"@thx/controls": "^1.1.0",
"debug": "^3.0.0",
"js-joda": "^1.5.4",
"lodash": "^4.17.4",
"moment": "^2.18.1",
"prop-types": "^15.5.10",
"react-widgets": "^4.0.0",
"react-widgets-moment": "^4.0.0",
"yup": "^0.22.0"
},
"greenkeeper": {
"ignore": [
"eslint-plugin-jsx-a11y"
]
},
"pre-commit": [
"lint",
"flow",
"test"
]
}