-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.52 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
{
"name": "@ultralight-beam/ub.ts",
"version": "0.1.0",
"description": "A Typescript implementation of the Ultralight Beam",
"main": "lib/index.js",
"scripts": {
"build": "babel src -x .ts -d lib --source-maps",
"check-types": "tsc --noEmit --incremental",
"lint": "eslint --ext .ts src/",
"lint-fix": "eslint --ext .ts src/ --fix",
"pretest": "yarn run check-types",
"test": "mocha -r ts-node/register 'test/**/*.test.ts'"
},
"bugs": {
"url": "https://github.com/ultralight-beam/UB.ts/issues"
},
"homepage": "https://github.com/ultralight-beam/UB.ts#readme",
"repository": {
"type": "git",
"url": "git+https://github.com:ultralight-beam/UB.ts.git"
},
"author": "Ultralight Beam",
"license": "Apache 2.0",
"files": [
"lib"
],
"keywords": [
"Ethereum",
"bluetooth",
"p2p",
"blockchain",
"manet"
],
"dependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-typescript": "^7.3.3",
"@babel/register": "^7.4.4",
"@types/mocha": "^5.2.7",
"@types/node": "^12.0.8",
"@typescript-eslint/eslint-plugin": "^1.10.2",
"@typescript-eslint/parser": "^1.10.2",
"eslint": "^5.16.0",
"mocha": "^6.1.4",
"ts-node": "^8.3.0",
"typescript": "^3.5.2"
},
"devDependencies": {
"chai": "^4.2.0"
}
}