-
Notifications
You must be signed in to change notification settings - Fork 72
/
package.json
84 lines (84 loc) · 2.37 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
{
"name": "react-moment",
"description": "React component for the moment date library.",
"version": "1.1.3",
"author": {
"name": "Sean Hickey",
"web": "https://headzoo.io"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.0.0",
"@babel/preset-stage-2": "^7.0.0",
"@babel/register": "^7.4.0",
"@storybook/addon-actions": "^5.0.6",
"@storybook/addon-knobs": "^5.0.6",
"@storybook/addon-options": "^5.0.6",
"@storybook/addons": "^5.0.6",
"@storybook/react": "^5.0.6",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.7.1",
"babel-loader": "^8.0.5",
"coveralls": "^3.0.3",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-import-resolver-babel-module": "^5.0.1",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"express": "^4.16.4",
"jest": "^24.7.1",
"json-loader": "^0.5.4",
"moment": "^2.29.0",
"moment-duration-format": "^2.2.2",
"moment-timezone": "^0.5.23",
"prop-types": "^15.7.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"rimraf": "^2.6.3",
"storybook-addon-jsx": "^7.1.0",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0"
},
"jest": {
"testRegex": "/tests/.*",
"moduleFileExtensions": [
"js",
"jsx"
],
"modulePathIgnorePatterns": [
"/tests/ssr"
]
},
"keywords": [
"date",
"moment",
"react",
"react-component",
"time"
],
"license": "MIT",
"main": "dist/index.js",
"peerDependencies": {
"moment": "^2.29.0",
"prop-types": "^15.7.0",
"react": "^16.0 || ^17.0.0 || ^18.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/headzoo/react-moment.git"
},
"scripts": {
"build": "npm run clean && webpack -p",
"clean": "rimraf ./dist/index.js",
"test": "export TZ=America/New_York; jest --coverage",
"travis-test": "npm run test && cat ./coverage/lcov.info | ./node_modules/.bin/coveralls",
"lint": "eslint ./src --cache --cache-location=.cache/eslint --ext .js,.jsx",
"lint:fix": "npm run lint -- --fix",
"storybook:dev": "start-storybook -p 6006",
"storybook:build": "build-storybook -o stories/build"
},
"types": "dist/index.d.ts"
}