-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
78 lines (78 loc) · 2.13 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
{
"name": "dayzed",
"version": "3.2.3",
"description": "Primitives to build simple, flexible, WAI-ARIA compliant React datepicker components.",
"main": "dist/dayzed.cjs.js",
"jsnext:main": "dist/dayzed.esm.js",
"module": "dist/dayzed.esm.js",
"types": "typings/dayzed.d.ts",
"author": "Morgan Kartchner",
"license": "MIT",
"scripts": {
"contributors:add": "all-contributors add",
"build": "npm run test:types && kcd-scripts build --bundle --p-react --no-clean --size-snapshot && node buildHooksForPreact.js",
"lint": "kcd-scripts lint",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"test:cypress": "npm run docz:build; npm-run-all --parallel --race docz:serve cypress:run",
"test:types": "npx tsc -p tsconfig.json",
"docz:serve": "serve ./.docz/dist -p 9001",
"docz:dev": "docz dev",
"docz:build": "docz build"
},
"husky": {
"hooks": {
"pre-commit": "kcd-scripts pre-commit"
}
},
"files": [
"dist",
"preact",
"typings/*.d.ts"
],
"peerDependencies": {
"prop-types": "^15",
"react": "^16.8 || ^17.0 || ^18.0"
},
"devDependencies": {
"@types/react-dom": "^16.9.8",
"all-contributors-cli": "^4.11.1",
"arrow-keys-react": "^1.0.6",
"cypress": "^3.1.5",
"docz": "^2.0.0-rc.55",
"glamor": "^2.20.40",
"glamorous": "^4.9.7",
"kcd-scripts": "^1.7.0",
"npm-run-all": "^4.1.2",
"preact": "^10.0.0-alpha.0",
"prop-types": "^15.6.0",
"react": "^16.8.0",
"react-dom": "^16.8.0",
"replace-in-file": "^3.4.3",
"serve": "^10.0.2",
"typescript": "^3.9.7"
},
"dependencies": {
"@babel/runtime": "^7.6.2",
"date-fns": "^2.0.0"
},
"eslintConfig": {
"extends": "./node_modules/kcd-scripts/eslint.js"
},
"eslintIgnore": [
"node_modules",
"cypress",
"docs/components",
"dist",
"preact",
"buildHooksForPreact.js"
],
"repository": {
"type": "git",
"url": "https://github.com/deseretdigital/dayzed.git"
},
"bugs": {
"url": "https://github.com/deseretdigital/dayzed/issues"
},
"homepage": "https://github.com/deseretdigital/dayzed#readme"
}