forked from 0x61726b/electron-vibrancy
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.73 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
{
"name": "@hxkuc/electron-vibrancy",
"version": "0.1.8",
"description": "Enable blurring the back of your transparent BrowserWindow using this simple module.",
"main": "index.js",
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"coffee-script": "^1.12.6",
"coffeelint": "^1.16.0",
"electron": "^6.0.2",
"mocha": "^3.4.1",
"node-gyp": "^5.0.3",
"node-pre-gyp": "^0.13.0",
"spectron": "^3.6.4"
},
"dependencies": {
"bindings": "^1.5.0",
"nan": "^2.14.0"
},
"scripts": {
"test-spectron": "mocha --compilers coffee:coffee-script/register ./spec/vibrancy-spec.coffee",
"test-module": "mocha --compilers coffee:coffee-script/register ./spec/module-spec.coffee",
"run-test-app": "./node_modules/.bin/electron ./spec/app",
"lint-cpp": "python scripts/lint.py",
"lint-coffee": "coffeelint spec",
"rebuild": "node-gyp rebuild --runtime=electron --debug --dist-url=https://npm.taobao.org/mirrors/atom-shell",
"build": "node-gyp build --target=1.6.8 --runtime=electron --arch=x64 --debug --dist-url=https://npm.taobao.org/mirrors/atom-shell",
"nrebuild": "node-gyp rebuild --debug --arch=x64 --verbose",
"nbuild": "node-gyp build --debug",
"conf": "node-gyp configure --arch=x64",
"postinstall": "npm run rebuild"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hxkuc/electron-vibrancy.git"
},
"keywords": [
"electron",
"vibrant",
"vibrancy",
"blur",
"transparent",
"transparency"
],
"author": "hxkuc",
"license": "MIT",
"gypfile": true,
"bugs": {
"url": "https://github.com/hxkuc/electron-vibrancy/issues"
},
"homepage": "https://github.com/hxkuc/electron-vibrancy#readme"
}