-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathpackage.json
49 lines (49 loc) · 1.15 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
{
"name": "react-calendly",
"version": "4.3.1",
"description": "Calendly integration for React apps",
"author": "tcampb",
"license": "MIT",
"repository": "tcampb/react-calendly",
"main": "dist/index.js",
"typings": "typings/index.d.ts",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"engines": {
"node": ">=8",
"npm": ">=5"
},
"keywords": [
"react",
"calendly",
"component"
],
"scripts": {
"build": "rollup -c && tsc --emitDeclarationOnly",
"start": "rollup -c -w",
"prepare": "npm run build"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.4",
"@types/react": "^16.8.0",
"@types/react-dom": "^16.8.0",
"prettier": "2.0.2",
"react": "^16.8.0",
"react-dom": "^16.8.0",
"rollup": "^3.29.4",
"typescript": "^4.0.5",
"@rollup/plugin-commonjs": "^25.0.4",
"@rollup/plugin-node-resolve": "^15.2.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"tslib": "^2.6.2"
},
"files": [
"dist",
"typings"
]
}