-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
59 lines (59 loc) · 1.81 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
{
"name": "desktop-notifications",
"version": "0.2.4",
"description": "A simple and opinionated library for handling Windows notifications",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"install": "prebuild-install || node-gyp rebuild",
"build": "node-gyp rebuild && tsc",
"pretest": "yarn build",
"test": "jest -c jest.json",
"prepublishOnly": "yarn build",
"postpublish": "git push --follow-tags",
"prettify": "yarn prettier --write \"./**/*.{ts,tsx,js,json,jsx,scss,html,yaml,yml}\"",
"check-prettier": "prettier --check \"./**/*.{ts,tsx,js,json,jsx,scss,html,yaml,yml}\"",
"prebuild-napi-x64": "prebuild -t 4 -r napi -a x64 --strip",
"prebuild-napi-ia32": "prebuild -t 4 -r napi -a ia32 --strip",
"prebuild-napi-arm64": "prebuild -t 4 -r napi -a arm64 --strip",
"prebuild-all": "yarn prebuild-napi-x64 && yarn prebuild-napi-ia32 && yarn prebuild-napi-arm64",
"upload": "node ./script/upload.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/desktop/desktop-notifications.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/desktop/desktop-notifications/issues"
},
"homepage": "https://github.com/desktop/desktop-notifications#readme",
"devDependencies": {
"@types/benchmark": "^1.0.31",
"@types/jest": "^26.0.13",
"@types/node": "^12.0.0",
"@types/uuid": "^8.3.4",
"benchmark": "^2.1.4",
"jest": "^26.4.2",
"prebuild": "^11.0.2",
"prettier": "^2.0.5",
"ts-node": "^9.0.0",
"typescript": "^3.9.0"
},
"dependencies": {
"node-addon-api": "^5.0.0",
"prebuild-install": "^7.0.1",
"uuid": "^8.3.2"
},
"binary": {
"napi_versions": [
4
]
},
"config": {
"runtime": "napi",
"target": 4
}
}