-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
34 lines (34 loc) · 877 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
32
33
34
{
"name": "aw-client",
"version": "0.2.0",
"description": "An ActivityWatch client library for JavaScript/NodeJS",
"author": "Johan Bjäreholt <[email protected]>, Erik Bjäreholt <[email protected]>",
"license": "MPL-2.0",
"homepage": "https://github.com/ActivityWatch/aw-client-js",
"repository": {
"type": "git",
"url": "git+https://github.com/ActivityWatch/aw-client-js.git"
},
"bugs": {
"url": "https://github.com/ActivityWatch/aw-client-js/issues"
},
"scripts": {
"compile": "tsc",
"test": "npm run prepare && ./test.sh",
"prepare": "npm run compile"
},
"main": "out/aw-client.js",
"files": [
"out"
],
"dependencies": {
"axios": "^0.21.1"
},
"devDependencies": {
"@types/mocha": "^2.2.42",
"@types/node": "^7.10.11",
"mocha": "^8.2.1",
"tslint": "^5.20.1",
"typescript": "^4.1.3"
}
}