-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
55 lines (55 loc) · 1.33 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
{
"name": "electron-protocol-serve",
"version": "1.4.0",
"description": "A file protocol that serves any existing file in a directory and redirects everything not found to index.html.",
"repository": "[email protected]:pichfl/electron-protocol-ember.git",
"license": "MIT",
"author": "Florian Pichler <[email protected]>",
"contributors": [
{
"name": "Florian Pichler",
"url": "http://ylk.gd/"
},
{
"name": "Ben Demboski",
"email": "[email protected]",
"url": "https://github.com/bendemboski"
}
],
"main": "index.js",
"scripts": {
"lint": "eslint .",
"mocha": "mocha ./tests/**/*-test.js",
"test": "npm run mocha && npm run lint"
},
"devDependencies": {
"bluebird": "^3.7.2",
"chai": "^4.2.0",
"dotenv-cli": "^3.1.0",
"eslint": "^6.8.0",
"lodash": "^4.17.15",
"mocha": "^7.1.2",
"mock-require": "^3.0.3",
"release-it": "^13.5.1",
"release-it-lerna-changelog": "^2.1.2",
"sinon": "^9.0.2"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"release-it": {
"plugins": {
"release-it-lerna-changelog": {
"infile": "CHANGELOG.md",
"launchEditor": true
}
},
"git": {
"tagName": "v${version}"
},
"github": {
"release": true,
"tokenRef": "GITHUB_AUTH"
}
}
}