This repository was archived by the owner on Nov 6, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.22 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.22 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
{
"name": "electron-plugin",
"version": "1.1.121",
"description": "an electron/node plugin architecture enabler",
"main": "src/index.js",
"scripts": {
"start": "node .",
"example": "node ./example/example.js",
"test": "jest test/unit && yarn test:int",
"test:dev": "jest --watchAll test/unit",
"test:int": "node test/integration/*",
"test:cov": "jest --coverage && yarn test:int && codecov",
"push": "yarn test && git push",
"deploy:major": "yarn version --major",
"deploy:minor": "yarn version --minor",
"deploy:patch": "yarn version --patch",
"deploy:push": "git push && git push --tags",
"preversion": "yarn test"
},
"keywords": [
"plugin",
"node",
"electron",
"extensibility",
"architecture"
],
"repository": "git@github.com:kanekotic/electron-plugin.git",
"author": "kanekotic <alvarojosepl@gmail.com>",
"license": "MIT",
"private": false,
"dependencies": {
"array-peek": "1.0.121",
"npm": "6.14.11"
},
"devDependencies": {
"codecov": "3.8.1",
"faker": "5.2.0",
"jest": "26.6.3",
"tape": "5.1.1"
},
"jest": {
"testMatch": [
"**/test/**/*-test.js"
],
"testEnvironment": "node",
"automock": false
}
}