forked from benjamindean/atom-notifier
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·94 lines (94 loc) · 2.74 KB
/
package.json
File metadata and controls
executable file
·94 lines (94 loc) · 2.74 KB
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
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "notify",
"version": "0.1.10",
"description": "Native desktop notifications for Atom",
"main": "./lib/notify",
"scripts": {
"analyze": "source-map-explorer lib/**/*.js",
"build:code": "rollup --config",
"build:theme": "node tools/compose-images.cjs",
"build": "npm-run-all --parallel build:*",
"clean:code": "rimraf ./lib",
"clean:theme": "rimraf ./images",
"clean": "npm-run-all --parallel clean:*",
"dev": "npm run start",
"install:theme": "degit --force atom/atom/resources/app-icons#v1.55.0 .app-icons",
"lint:code": "eslint --ignore-path .gitignore --no-error-on-unmatched-pattern ./src/**/*.ts",
"lint:styles": "stylelint --allow-empty-input styles/*.{css,less}",
"lint": "npm-run-all --parallel lint:*",
"postinstall": "npm run theme",
"prepublishOnly": "npm run build",
"start": "rollup --watch --config",
"test": "npm run lint",
"theme": "npm run install:theme && npm run build:theme"
},
"keywords": [],
"repository": {
"type": "git",
"url": "https://github.com/idleberg/atom-notify"
},
"homepage": "https://atom.io/packages/notify",
"bugs": {
"url": "https://github.com/idleberg/atom-notify/issues"
},
"license": "MIT",
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"activationCommands": {
"atom-workspace": [
"notify:show-error",
"notify:show-fatal-error",
"notify:show-info",
"notify:show-success",
"notify:show-warning"
]
},
"activationHooks": [
"core:loaded-shell-environment"
],
"providedServices": {
"notify": {
"description": "Opens files/folders in your file manager",
"versions": {
"0.1.0": "provideNotify"
}
}
},
"dependencies": {
"@atxm/developer-console": "^0.5.0",
"degit": "^2.8.4",
"log-symbols": "^4.1.0",
"node-notifier": "^9.0.1",
"sharp": "^0.28.1"
},
"devDependencies": {
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^18.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@rollup/plugin-typescript": "^8.2.1",
"@types/atom": "^1.40.10",
"@types/node": "^15.0.1",
"@types/node-notifier": "^8.0.0",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^7.25.0",
"eslint-plugin-json": "^2.1.2",
"husky": "^6.0.0",
"isexe": "^2.0.0",
"lint-staged": "^10.5.4",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"rollup": "^2.46.0",
"rollup-plugin-scss": "^2.6.1",
"rollup-plugin-terser": "^7.0.2",
"source-map-explorer": "^2.5.2",
"stylelint": "^13.13.0",
"tslib": "^2.2.0",
"typescript": "^4.2.4"
},
"lint-staged": {
"*.ts": "eslint --cache --fix"
}
}