-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.31 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"private": true,
"name": "zeitgeist",
"version": "0.4.2",
"description": "Log activity in Atom to Zeitgeist.",
"license": "GPL-3.0",
"author": "Payson Wallach <payson@paysonwallach.com>",
"homepage": "https://github.com/paysonwallach/zeitgeist-data-source-atom#readme",
"repository": {
"type": "git",
"url": "https://github.com/paysonwallach/zeitgeist-data-source-atom"
},
"main": "dist/main",
"scripts": {
"build": "run-s clean build:ts",
"build:ts": "tsc --outDir dist/",
"clean": "shx rm -rf dist",
"format": "run-p format:*",
"format:js": "eslint --fix .",
"format:package.json": "prettier-package-json --write",
"prerelease": "scrivano",
"release": "standard-version"
},
"dependencies": {
"file-url": "^3.0.0",
"mmmagic": "^0.5.3",
"tslib": "^2.3.1",
"typescript-json-serializer": "^4.0.0",
"uuidv4": "^6.2.12"
},
"devDependencies": {
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@types/atom": "^1.40.11",
"@types/electron": "^1.6.10",
"@types/mmmagic": "^0.4.30",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"cross-env": "^7.0.3",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"prettier-package-json": "^2.6.0",
"scrivano": "^0.1.0",
"shx": "^0.3.4",
"standard-version": "^9.3.2",
"typescript": "^4.5.5"
},
"keywords": [
"activity tracking",
"time tracking",
"zeitgeist"
],
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"meta": {
"title": "zeitgeist-data-source-atom",
"repository": {
"owner": "paysonwallach",
"name": "zeitgeist-data-source-atom"
},
"license": {
"name": "GNU General Public License v3.0",
"url": "https://github.com/paysonwallach/zeitgeist-data-source-atom/blob/master/LICENSE"
},
"codeOfConduct": {
"url": "https://github.com/paysonwallach/zeitgeist-data-source-atom/blob/master/CODE_OF_CONDUCT.md"
},
"releases": {
"url": "https://github.com/paysonwallach/zeitgeist-data-source-atom/releases"
}
},
"standard-version": {
"scripts": {
"precommit": "npm run prerelease"
}
}
}