-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 972 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
36
37
38
39
40
41
{
"name": "node-remote",
"version": "0.1.0",
"description": "js rpc server",
"main": "dist/remote.js",
"module": "dist/remote.es6.js",
"types": "dist/types/remote.d.ts",
"author": "Maksim Kozhukh",
"license": "MIT",
"scripts": {
"test": "yarn build && yarn mocha",
"build": "yarn rollup -c rollup.config.js",
"lint": "yarn eslint ./src --ext .ts,.js",
"dist": "yarn build --config-dist",
"watch": "yarn rollup -c rollup.config.js -w"
},
"files": [
"dist"
],
"devDependencies": {
"@rollup/plugin-typescript": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"husky": "^4.2.3",
"prettier": "^2.5.1",
"pretty-quick": "^3.1.3",
"rollup": "^2.66.0",
"rollup-plugin-terser": "^7.0.0",
"typescript": "^4.5.5"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"dependencies": {
"ws": "^8.4.2"
}
}