-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1004 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": "@nimiq/rpc",
"version": "0.4.1",
"description": "RPC Client/Server",
"repository": {
"type": "git",
"url": "git+https://github.com/nimiq/rpc.git"
},
"main": "dist/rpc.umd.js",
"module": "dist/rpc.es.js",
"types": "types/index.d.ts",
"scripts": {
"typecheck": "tsc",
"lint": "tslint 'src/**/*.ts'",
"lint-fix": "tslint --fix 'src/**/*.ts'",
"test": "jest",
"dev": "tsc-watch --onSuccess \"rollup -c\" --onFirstSuccess \"node demo/server.js\"",
"build": "tsc && rollup -c"
},
"files": [
"dist",
"types"
],
"author": "Nimiq",
"license": "Apache-2.0",
"devDependencies": {
"@types/jest": "^23.3.1",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"jest": "^23.4.2",
"rollup": "^0.64.0",
"serve-index": "^1.9.1",
"serve-static": "^1.14.1",
"ts-jest": "^23.1.2",
"ts-loader": "^4.4.2",
"tsc-watch": "^4.0.0",
"tslint": "^5.11.0",
"typescript": "^3.0.1"
},
"dependencies": {}
}