-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
63 lines (63 loc) · 1.69 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": "react-icalendar-link",
"version": "3.0.2",
"description": "Ability to create link for downloading ics file",
"author": "josephj",
"license": "MIT",
"repository": "josephj/react-icalendar-link",
"main": "dist/index.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"engines": {
"node": ">=8",
"npm": ">=5"
},
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"build": "yarn test && rollup -c",
"start": "rollup -c -w",
"prepare": "yarn build",
"predeploy": "cd example && yarn && yarn build",
"deploy": "gh-pages -d example/build",
"lint": "tslint 'src/**/*.{ts,tsx}'"
},
"dependencies": {
"@jest/globals": "^27.0.1"
},
"peerDependencies": {
"prop-types": "^15.5.4",
"react": ">= 15.0.0",
"react-dom": ">= 15.0.0"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/react": "^17.0.5",
"@types/react-dom": "^17.0.3",
"babel-core": "^6.26.3",
"babel-runtime": "^6.26.0",
"cross-env": "^7.0.3",
"gh-pages": "^3.2.3",
"jest": "^27.0.1",
"prettier": "^2.4.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rollup": "^2.47.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss-modules": "^2.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"rollup-plugin-url": "^3.0.1",
"ts-jest": "^27.0.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.15.0",
"tslint-config-standard": "^9.0.0",
"tslint-react": "^5.0.0",
"typescript": "^4.3.2"
},
"files": [
"dist"
]
}