-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.74 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
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"publishConfig": {
"tag": "rc"
},
"name": "@noia-network/node-contents-client",
"version": "2.2.1-rc.1",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"pretest": "tsc -p . --noEmit",
"test": "npm run tslint && echo Warning: jest tests are skipped.",
"posttest": "npm run prettier",
"tslint": "tslint --project . --config ./tslint.json && echo Successfully passed tslint test.",
"watch-jest": "jest --watch",
"watch": "tsc -w",
"prettier": "prettier \"src/**/*\" -l"
},
"keywords": [],
"author": {
"name": "NOIA Network Limited"
},
"license": "LGPL-2.1",
"peerDependencies": {
"@noia-network/protocol": "^1.0.1"
},
"devDependencies": {
"@types/ws": "^6.0.1",
"fs-chunk-store": "^1.7.0",
"immediate-chunk-store": "^1.0.8",
"jest": "^22.4.3",
"prettier": "^1.14.2",
"simplr-tslint": "^1.0.0-alpha.14",
"tslint": "^5.11.0",
"tslint-language-service": "^0.9.9",
"typescript": "^3.0.0",
"ws": "^6.0.0"
},
"dependencies": {
"@noia-network/protocol": "^1.3.0",
"@noia-network/webrtc-direct-client": "^1.0.0",
"@types/fs-extra": "^5.0.4",
"@types/node": "^10.1.1",
"@types/winston": "^2.3.9",
"diskusage": "1.0.0",
"fs-extra": "^7.0.0",
"os": "^0.1.1",
"protobufjs": "^6.8.8",
"speedometer": "^1.0.0",
"strict-event-emitter-types": "^2.0.0",
"tslib": "^1.9.3",
"winston": "^2.4.2",
"wrtc": "0.3.4"
},
"files": [
"dist",
"**/*.md",
"!/examples"
]
}