-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.87 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
{
"name": "@ultralight-beam/ub.ts",
"version": "0.1.0",
"description": "A Typescript implementation of the Ultralight Beam",
"main": "lib/index.js",
"scripts": {
"prebuild": "rm -rf lib && rm -rf dist",
"build": "yarn build:lib && yarn build:web",
"build:web": "webpack --mode production --entry ./lib/web.js --output ./dist/ub-direct.min.js",
"build:lib": "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"
],
"devDependencies": {
"@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",
"@babel/runtime": "^7.5.4",
"@types/mocha": "^5.2.7",
"@types/node": "^12.0.8",
"@typescript-eslint/eslint-plugin": "^1.10.2",
"@typescript-eslint/parser": "^1.10.2",
"chai": "^4.2.0",
"eslint": "^5.16.0",
"mocha": "^6.1.4",
"ts-node": "^8.3.0",
"typedoc": "^0.14.2",
"typedoc-plugin-external-module-name": "^2.1.0",
"typescript": "^3.5.2",
"webpack": "^4.29.6",
"webpack-cli": "^3.2.3"
},
"dependencies": {}
}