-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
24 lines (24 loc) · 1011 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
{
"name": "aw-teams-history-plugin",
"version": "0.1.0",
"description": "Userscript to retrieve teams history information and feed it to ActivityWatch buckets",
"homepage": "https://github.com/davidfraser/aw-teams-history-plugin#readme",
"main": "index.js",
"author": "David Fraser <[email protected]>",
"license": "MIT",
"scripts": {
"build:development": "node_modules/.bin/webpack.cmd --node-env development",
"clip:development": "npm run build:development && (type dist\\main.user.js | clip) && echo now paste clipboard into TamperMonkey",
"build:production": "node_modules/.bin/webpack.cmd --node-env production",
"clip:production": "npm run build:production && (type dist\\main.user.js | clip) && echo now paste clipboard into TamperMonkey",
"build": "npm run build:production",
"clip": "npm run clip:production"
},
"dependencies": {
},
"devDependencies": {
"webpack": "4.46.0",
"webpack-cli": "4.5.0",
"webpack-userscript": "2.5.6"
}
}