-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.21 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
{
"name": "signal-client",
"version": "0.1.0",
"license": "AGPL-3.0-only",
"private": true,
"main": "node/dist/index.js",
"types": "node/dist/index.d.ts",
"scripts": {
"tsc": "tsc -p node && cp node/*.d.ts node/dist",
"clean": "rimraf node/dist build",
"test": "electron-mocha --recursive node/dist/test",
"lint": "cd node && eslint . --ext .js,.jsx,.ts,.tsx",
"format": "p() { prettier ${@:- --write} package.json '*.js' 'node/**/*.{css,js,json,md,scss,ts,tsx}'; }; p",
"prepare": "yarn tsc"
},
"dependencies": {
"bindings": "^1.5.0"
},
"devDependencies": {
"@types/bindings": "^1.3.0",
"@types/chai": "4.2.7",
"@types/mocha": "5.2.7",
"@types/node": "13.1.8",
"@typescript-eslint/eslint-plugin": "^4.6.0",
"@typescript-eslint/parser": "^4.6.0",
"chai": "4.2.0",
"electron": "8.2.5",
"electron-mocha": "8.1.1",
"eslint": "^7.12.1",
"eslint-config-prettier": "6.15.0",
"eslint-plugin-header": "^3.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-mocha": "^8.0.0",
"eslint-plugin-more": "^1.0.0",
"mocha": "7.1.1",
"node-gyp": "^7.1.2",
"prettier": "1.19.1",
"rimraf": "3.0.1",
"typescript": "3.7.4"
}
}