forked from ajhenry/react-google-slides
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.32 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.32 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
{
"name": "react-google-slides",
"version": "3.1.1",
"description": "A very thin wrapper for displaying Google Slides with React",
"author": "AJHenry",
"license": "MIT",
"repository": "AJHenry/react-google-slides",
"main": "dist/main.js",
"module": "dist/main.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=8",
"npm": ">=5"
},
"scripts": {
"test": "jest",
"test:watch": "jest -c jest.config.js --watch",
"build": "webpack --config ./webpack.config.js --mode production --display-error-details",
"prepare": "yarn run build",
"predeploy": "cd example && yarn install && yarn run build",
"deploy": "gh-pages -d example/build"
},
"dependencies": {},
"peerDependencies": {
"react": "^15.0.0 || ^16.0.0 || ^17.0.0",
"react-dom": "^15.0.0 || ^16.0.0 || ^17.0.0"
},
"devDependencies": {
"@types/enzyme": "^3.10.5",
"@types/jest": "^25.2.1",
"@types/react": "^16.9.32",
"@types/react-dom": "^16.9.6",
"enzyme": "^3.11.0",
"gh-pages": "^2.1.1",
"jest": "^25.2.7",
"prettier": "^1.19.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"source-map-loader": "^0.2.4",
"ts-jest": "^25.3.1",
"ts-loader": "^6.2.2",
"typescript": "^3.8.3",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11"
},
"files": [
"dist"
]
}