You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.0 KiB
38 lines
1.0 KiB
{
|
|
"name": "netgraph",
|
|
"version": "2.0.2",
|
|
"description": "graph csv data of network health",
|
|
"author": "Robey Pointer <robeypointer@gmail.com>",
|
|
"license": "Apache-2.0",
|
|
"sideEffects": false,
|
|
"homepage": "https://code.lag.net/robey/netgraph",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://code.lag.net/robey/netgraph.git"
|
|
},
|
|
"main": "./lib/netgraph.js",
|
|
"files": [
|
|
"dist",
|
|
"lib"
|
|
],
|
|
"devDependencies": {
|
|
"@types/node": "^14.0.6",
|
|
"http-server": "^0.12.3",
|
|
"source-map-support": "^0.5.19",
|
|
"ts-loader": "^8.1.0",
|
|
"typescript": "^4.2.3",
|
|
"webpack": "^5.28.0",
|
|
"webpack-cli": "^4.6.0"
|
|
},
|
|
"scripts": {
|
|
"build": "mkdir -p dist && cp -a public/* dist/ && webpack-cli",
|
|
"clean": "rm -rf lib dist",
|
|
"demo": "npm run build && http-server dist/ -p 8023 --cors",
|
|
"distclean": "npm run clean && rm -rf node_modules npm-debug.log",
|
|
"prepare": "npm run build",
|
|
"test": "echo there are no tests."
|
|
},
|
|
"dependencies": {
|
|
"yeri": "^0.8.3"
|
|
}
|
|
}
|
|
|