-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.4 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
{
"name": "frost-rpc",
"version": "1.0.1",
"description": "Library that helps create RPC API based on JSON-RPC 2.0 standards written in Typescript",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"browser": "dist/bundle.js",
"scripts": {
"start": "ts-node src/index.ts",
"bundle": "npx browserify src/index.ts -p [ tsify --noImplicitAny ] > dist/bundle.js",
"build": "tsc",
"build-prod": "tsc --sourceMap false",
"test": "mocha -r ts-node/register tests/**/*.ts",
"coverage": "nyc npm run test",
"prepare": "npm run build-prod && npm run bundle"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AnimalDEV/frost-rpc.git"
},
"keywords": ["rpc", "jsonrpc", "typescript"],
"author": "Maciej Lasoń",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/AnimalDEV/frozen-rpc/issues"
},
"homepage": "https://github.com/AnimalDEV/frozen-rpc#readme",
"files": [
"dist/**/*",
"bundle.js"
],
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/mocha": "^7.0.2",
"@types/node": "^14.0.5",
"@typescript-eslint/eslint-plugin": "^3.0.0",
"@typescript-eslint/parser": "^3.0.0",
"browserify": "^16.5.1",
"eslint": "^7.1.0",
"mocha": "^7.1.2",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^15.0.1",
"ts-node": "^8.10.1",
"tsify": "^4.0.1",
"typescript": "^3.9.3"
}
}