-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1.24 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
{
"name": "ixy.js",
"version": "1.0.0",
"description": "Javascript implementation of ixy, a userspace network driver",
"main": "ixy.js",
"scripts": {
"forward": "node ixy.js forward",
"generate": "node ixy.js generate",
"forward-perf": "0x -F=\"flamegraphs/{timestamp}.html\" ixy.js forward",
"forward-perfk": "0x -F=\"flamegraphs/{timestamp}.html\" --kernel-tracing ixy.js forward",
"generate-perf": "0x -F=\"flamegraphs/{timestamp}.html\" ixy.js generate",
"generate-perfk": "0x -F=\"flamegraphs/{timestamp}.html\" --kernel-tracing ixy.js generate",
"setup": "npm i --unsafe --production && sudo ./setup-hugetlbfs.sh",
"devsetup": "npm i --unsafe && sudo ./setup-hugetlbfs.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ixy-languages/ixy.js.git"
},
"engines": {
"node": ">=10.4.0"
},
"author": "Sebastian Di Luzio <[email protected]>",
"license": "MIT",
"devDependencies": {
"babel-eslint": "^10.0.2",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.13.0",
"0x": "^4.8.2"
},
"dependencies": {
"make-runnable": "^1.3.6"
}
}