-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.2 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.2 KB
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
{
"name": "@reecelucas/react-datepicker",
"version": "2.0.0",
"description": "An accessible, internationalizable React datepicker",
"main": "lib/index.js",
"module": "esm/index.js",
"files": [
"lib/",
"esm/"
],
"scripts": {
"start": "yarn storybook",
"storybook": "start-storybook -p 8000",
"test": "echo 'Write some tests!'",
"test:cover": "yarn test --coverage --collectCoverageFrom='src/index.ts'",
"coveralls": "cat coverage/lcov.info | node node_modules/.bin/coveralls",
"lint": "tslint 'src/**/*.{ts,tsx}'",
"format": "prettier --write 'src/**/*.{ts,tsx}'",
"build:cjs": "tsc",
"build:esm": "tsc -m esNext --outDir esm",
"build": "yarn build:cjs && yarn build:esm",
"prepublishOnly": "yarn lint && yarn test && yarn build",
"precommit": "prettier --check 'src/**/*.{ts,tsx}' && npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/reecelucas/react-datepicker.git"
},
"keywords": [
"react",
"datepicker",
"calendar",
"date"
],
"author": "Reece Lucas <reecelucas@sky.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/reecelucas/react-datepicker/issues"
},
"homepage": "https://github.com/reecelucas/react-datepicker#readme",
"peerDependencies": {
"react": "^16.8.0",
"react-dom": "^16.8.0"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@emotion/core": "^10.0.10",
"@emotion/styled": "^10.0.12",
"@storybook/addons": "^5.1.9",
"@storybook/react": "^5.1.9",
"@types/jest": "^24.0.15",
"@types/react": "^16.8.22",
"@types/storybook__react": "^4.0.2",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.6",
"coveralls": "^3.0.4",
"husky": "^1.3.1",
"jest": "^24.8.0",
"prettier": "^1.18.2",
"tslint": "^5.18.0",
"tslint-config-prettier": "^1.18.0",
"tslint-react": "^4.0.0",
"typescript": "^3.5.2"
},
"husky": {
"hooks": {
"pre-commit": "npm run precommit"
}
},
"dependencies": {
"date-fns": "^2.0.0-alpha.37"
}
}