-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 2.15 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
62
63
64
65
66
67
68
{
"name": "@discipl/core-ipv8",
"version": "0.0.3",
"description": "Discipl Core Connector for IPV8 network overlays",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/Ipv8Connector.d.ts",
"scripts": {
"prepack": "npm run build",
"build": "npm run build:types && npm run build:js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel src --out-dir dist --extensions \".ts\"",
"test": "mocha --spec \"test/**/*.spec.ts\"",
"test:unit": "mocha --spec \"test/unit/**/*.spec.ts\"",
"test:integration": "mocha --spec \"test/integration/**/*.spec.ts\"",
"test:coverage": "nyc mocha --spec \"test/**/*.spec.ts\"",
"lint": "eslint \"src/**\"",
"lint:fix": "eslint \"src/**\" --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/discipl/discipl-core-ipv8.git"
},
"publishConfig": {
"access": "public"
},
"author": "Bas Kaptijn",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/discipl/discipl-core-ipv8/issues"
},
"homepage": "https://github.com/discipl/discipl-core-ipv8#readme",
"dependencies": {
"@discipl/core-baseconnector": "0.2.2",
"isomorphic-fetch": "^3.0.0",
"json-stable-stringify": "1.0.1",
"loglevel": "1.6.7",
"node-fetch": "^2.6.1",
"node-forge": "^0.10.0",
"rxjs": "^6.5.5"
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "7.8.7",
"@babel/plugin-proposal-class-properties": "7.8.3",
"@babel/preset-env": "7.8.7",
"@babel/preset-typescript": "7.9.0",
"@babel/register": "7.9.0",
"@istanbuljs/nyc-config-babel": "3.0.0",
"@types/chai": "4.2.11",
"@types/chai-as-promised": "7.1.2",
"@types/json-stable-stringify": "1.0.32",
"@types/mocha": "7.0.2",
"@types/node-fetch": "2.5.5",
"@types/node-forge": "0.9.2",
"@types/sinon": "9.0.0",
"@typescript-eslint/eslint-plugin": "2.24.0",
"@typescript-eslint/parser": "2.24.0",
"babel-plugin-istanbul": "6.0.0",
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
"mocha": "7.1.1",
"nyc": "15.0.0",
"sinon": "9.0.2",
"standard": "12.0.1",
"typescript": "3.8.3"
}
}