-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.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
{
"name": "web-shake-report",
"version": "0.1.2",
"description": "Web Shake to Report: combines shake.js with html2canvas to provide shake to report functionality for mobile development on web",
"author": {
"name": "ali garajian",
"email": "[email protected]"
},
"keywords": [
"shake",
"report",
"debug",
"mobile-development"
],
"homepage": "https://github.com/ali-garajian/web-shake-report#readme",
"bugs": {
"url": "https://github.com/ali-garajian/web-shake-report/issues"
},
"main": "./src/index.ts",
"license": "MIT",
"type": "module",
"typings": "./build/index.d.ts",
"scripts": {
"dev": "NODE_ENV=development rollup -cw",
"build": "NODE_ENV=production rollup -c",
"deploy": "npm run build && cp package.json ./build && cd ./build && npm publish"
},
"dependencies": {
"html2canvas": "^1.4.1",
"shake.js": "^1.2.2"
},
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.1",
"postcss": "^8.4.23",
"rollup": "^3.22.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-uglify": "^6.0.4",
"tslib": "^2.5.2",
"typescript": "^5.0.4"
}
}