-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.34 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
48
{
"name": "peer_rpc",
"version": "1.0.16",
"description": "",
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"files": [
"dist"
],
"types": "dist/index.d.js",
"typescript": {
"main": "peer_rpc.ts"
},
"scripts": {
"build": "tsc && rollup -c",
"test": "TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' mocha --reporter spec --require ts-node/register test/*.ts",
"special": "TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' mocha --reporter spec --require ts-node/register --grep 'should throw error from remote side' test/*.ts",
"prepublish": "npm run test && npm run build"
},
"keywords": [],
"author": "Marco Fleckinger <[email protected]",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"chai": "^4.2.0",
"mocha": "^7.1.2",
"rollup": "^2.10.2",
"rollup-plugin-typescript2": "^0.27.1",
"sinon": "^9.0.2",
"ts-node": "^8.10.1",
"ts-sinon": "^1.2.0",
"ts-test-functions": "0.0.11",
"typescript": "^3.9.2"
},
"directories": {
"test": "test"
},
"dependencies": {},
"repository": {
"type": "git",
"url": "git+https://github.com/marco74/peer_rpc.git"
},
"bugs": {
"url": "https://github.com/marco74/peer_rpc/issues"
},
"homepage": "https://github.com/marco74/peer_rpc#readme"
}