-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
53 lines (53 loc) · 1.61 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": "meteor-desktop-splash-screen",
"version": "0.4.3",
"engines": {
"node": ">=6.0.0",
"meteor-desktop": ">=0.6.0"
},
"description": "Meteor Desktop splash screen plugin.",
"main": "dist/index.js",
"scripts": {
"test": "ava --source dist/**/* -s",
"test-watch": "ava --source src --watch --verbose -s",
"prepublish": "npm run build",
"lint": "eslint src tests",
"build": "babel src --out-dir dist --source-maps inline --copy-files",
"build-watch": "babel src --watch --out-dir dist --source-maps inline --copy-files",
"postversion": "npm run build && npm run lint && npm test && npm publish",
"version": "node dist/scripts/propagateVersion.js && git add README.md"
},
"author": "Bartosz Wojtkowiak <bartosz@wojtkowiak.it>",
"license": "MIT",
"devDependencies": {
"ava": "1.0.0-beta.4",
"@babel/core": "7.0.0-beta.47",
"@babel/cli": "7.0.0-beta.47",
"@babel/preset-env": "7.0.0-beta.47",
"electron": "1.8.7",
"eslint": "3.19.0",
"eslint-config-airbnb-base": "11.1.3",
"eslint-plugin-import": "2.2.0",
"meteor-desktop-test-suite": "0.2.1",
"node-resemble-js": "0.2.0",
"shelljs": "0.8.2",
"spectron": "3.8.0"
},
"dependencies": {},
"repository": {
"type": "git",
"url": "https://github.com/wojtkowiak/meteor-desktop-splash-screen"
},
"keywords": [
"electron",
"meteor",
"packager",
"desktop",
"splash",
"splashscreen"
],
"bugs": {
"url": "https://github.com/wojtkowiak/meteor-desktop-splash-screen/issues"
},
"homepage": "https://github.com/wojtkowiak/meteor-desktop-splash-screen"
}