-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
31 lines (31 loc) · 912 Bytes
/
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
{
"name": "recent-pdf",
"version": "1.0.0",
"description": "A Chrome extension.",
"main": "index.js",
"scripts": {
"watch": "webpack --config webpack/webpack.dev.js --watch",
"build": "webpack --config webpack/webpack.prod.js",
"update-contrib": "weallcontribute -o . && git add CONTRIBUTING.md && git commit -m 'docs(contributing): updated CONTRIBUTING.md'"
},
"author": "Alex Weininger",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/alexweininger/recent-pdfs.git"
},
"devDependencies": {
"@types/chrome": "0.0.78",
"ts-loader": "~5.0.0",
"typescript": "~3.0.3",
"weallcontribute": "^1.0.9",
"webpack": "^4.17.3",
"webpack-cli": "^3.1.2",
"webpack-merge": "^4.1.5"
},
"dependencies": {
"@microsoft/applicationinsights-web": "^2.3.1",
"chrome-options": "^1.0.0",
"print-js": "^1.0.63"
}
}