-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
63 lines (63 loc) · 1.66 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
{
"name": "calendarx",
"version": "1.4.0",
"description": "React calendar component library",
"source": "src/index.js",
"main": "dist/calendarx.js",
"umd:main": "dist/calendarx.umd.js",
"unpkg": "dist/calendarx.umd.js",
"module": "dist/calendarx.module.js",
"esmodule": "dist/calendarx.modern.js",
"types": "calendarx.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "jest",
"build": "microbundle --name Calendarx --jsx React.createElement",
"watch": "yarn build watch",
"lint": "eslint src test",
"format": "prettier {src,test}/*.js --single-quote --no-semi --print-width=100 --write",
"prepublish": "yarn test && yarn build"
},
"dependencies": {},
"peerDependencies": {
"react": "^16.8"
},
"devDependencies": {
"@babel/core": "^7.13.14",
"@babel/preset-env": "^7.13.12",
"@babel/preset-react": "^7.13.13",
"@testing-library/react": "^11.2.6",
"all-contributors-cli": "^6.20.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"eslint": "^7.23.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-react": "^7.23.1",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^26.6.3",
"microbundle": "^0.13.0",
"moment": "^2.29.1",
"prettier": "^2.2.1",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/mfix22/calendarx.git"
},
"keywords": [
"calendar",
"plugin"
],
"author": "@mfix22",
"bugs": {
"url": "https://github.com/mfix22/calendarx/issues"
},
"homepage": "https://github.com/mfix22/calendarx#readme",
"jest": {
"clearMocks": true
}
}