-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
35 lines (35 loc) · 965 Bytes
/
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
{
"name": "electron-better-web-request",
"version": "1.0.1",
"description": "Module replacement for electron-web-request",
"main": "./lib/store.js",
"author": "Station <[email protected]>",
"license": "ISC",
"homepage": "https://github.com/getstation/electron-better-web-request#readme",
"repository": {
"type" : "git",
"url" : "https://github.com/getstation/electron-better-web-request"
},
"scripts": {
"test": "mocha -r ts-node/register test/**/*.ts",
"prepublish": "rm -rf ./lib/ && tslint -p . && tsc -p . --declaration"
},
"files": [
"lib"
],
"devDependencies": {
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.18",
"@types/uuid": "^3.4.4",
"electron": "^4.0.1",
"mocha": "^5.2.0",
"ts-node": "^7.0.1",
"tslint": "^5.12.0",
"tslint-config-station": "^0.5.1",
"typescript": "^3.2.2"
},
"dependencies": {
"url-match-patterns": "^0.2.0",
"uuid": "^3.3.2"
}
}