-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
61 lines (61 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
56
57
58
59
60
61
{
"name": "fucmen",
"version": "4.2.1",
"description": "Fully Connected Mesh Network",
"main": "dist/fucmen.js",
"types": "dist/types/fucmen.d.ts",
"files": [
"dist"
],
"author": "Alessandro Vergani <alessandro.vergani@gmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/Loghorn/fucmen.git"
},
"keywords": [
"mesh",
"network",
"p2p"
],
"license": "MIT",
"engines": {
"node": ">=8.9.0"
},
"scripts": {
"lint": "tslint --project .",
"prebuild": "rimraf dist && rimraf docs",
"build": "cross-env NODE_ENV=production webpack --mode=production",
"build:dev": "webpack --mode=development",
"prepush": "npm run build",
"prepare": "npm run build"
},
"bugs": {
"url": "https://github.com/Loghorn/fucmen/issues"
},
"homepage": "https://github.com/Loghorn/fucmen#readme",
"dependencies": {
"@types/node": "^8.0.0"
},
"devDependencies": {
"@types/colors": "*",
"@types/lodash": "*",
"@types/node-uuid": "*",
"@types/webpack": "^4.4.11",
"awesome-typescript-loader": "^5.2.1",
"colors": "^1.3.2",
"cross-env": "^5.2.0",
"lodash": "^4.17.10",
"node-pack": "^0.1.3",
"node-uuid": "^1.4.8",
"rimraf": "^2.6.2",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"tslint-config-standard": "^8.0.1",
"typedoc": "^0.12.0",
"typedoc-webpack-plugin": "^1.1.4",
"typescript": "^3.0.3",
"uglifyjs-webpack-plugin": "^1.3.0",
"webpack": "^4.17.2",
"webpack-cli": "^3.1.0"
}
}