-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.16 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 3.16 KB
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"publishConfig": {
"tag": "rc"
},
"name": "@noia-network/node",
"version": "1.2.5-rc.1",
"description": "NOIA Node core.",
"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"
},
"repository": {
"type": "git",
"url": "https://github.com/noia-network/noia-node.git"
},
"keywords": [],
"author": {
"name": "NOIA Network Limited"
},
"license": "LGPL-2.1",
"homepage": "https://github.com/noia-network/noia-node",
"devDependencies": {
"@types/jest": "^22.2.3",
"jest": "^22.4.3",
"prettier": "^1.13.5",
"simplr-tslint": "0.0.1",
"ts-jest": "^22.4.4",
"tslint": "^5.11.0",
"tslint-language-service": "^0.9.9",
"typescript": "^3.0.0",
"@noia-network/node-settings": "^1.0.1"
},
"peerDependencies": {
"@noia-network/node-settings": "^1.0.1"
},
"dependencies": {
"@noia-network/node-contents-client": "2.2.1-rc.1",
"@noia-network/protocol": "^1.3.0",
"@noia-network/webrtc-direct-server": "^1.0.4",
"@types/bip39": "^2.4.0",
"@types/dotenv": "^4.0.3",
"@types/express": "^4.16.0",
"@types/jsonfile": "^4.0.1",
"@types/mime-types": "^2.1.0",
"@types/node": "^9.6.12",
"@types/node-fetch": "^1.6.8",
"@types/ping": "^0.2.0",
"@types/request": "^2.47.1",
"@types/rimraf": "^2.0.2",
"@types/tcp-ping": "^0.1.0",
"@types/ws": "^6.0.0",
"bip39": "^2.5.0",
"body-parser": "^1.18.2",
"crypto": "^1.0.1",
"default-gateway": "^2.7.2",
"dotenv": "^5.0.1",
"express": "^4.16.3",
"external-ip": "^2.0.3",
"jsonfile": "^4.0.0",
"logdna-winston": "^1.0.0",
"mime-types": "^2.1.18",
"nat-pmp": "^1.0.0",
"node-fetch": "^2.0.0",
"ping": "^0.2.2",
"protobufjs": "^6.8.8",
"public-ip": "^3.1.0",
"randombytes": "^2.0.6",
"request": "^2.85.0",
"rimraf": "^2.6.2",
"speedtest-net": "^1.6.1",
"strict-event-emitter-types": "^2.0.0",
"swagger-ui-express": "^3.0.8",
"systeminformation": "^4.11.4",
"tcp-ping": "^0.1.1",
"tslib": "^1.9.2",
"winston": "^2.4.1",
"ws": "^6.0.0"
},
"files": [
"dist",
"**/*.md",
"swagger.json",
"@types",
"!/examples"
],
"jest": {
"transform": {
"^.+\\.(ts|tsx)?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(ts|tsx)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}