-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
36 lines (36 loc) · 987 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
35
36
{
"name": "aw-client",
"version": "0.4.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"
],
"devDependencies": {
"@types/mocha": "*",
"@types/node": "*",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"eslint": "^8.14.0",
"eslint-plugin-prettier": "*",
"mocha": "*",
"prettier": "*",
"typescript": "*",
"typescript-eslint": "*"
}
}