-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
45 lines (45 loc) · 1.01 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
{
"name": "perf",
"version": "1.0.0",
"description": "",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"test": "eslint lib",
"build": "browserify ./lib/app.js > ./docs/app.js",
"watch": "watchify ./lib/app.js -o ./docs/app.js -v"
},
"repository": {
"type": "git",
"url": "git+https://github.com/circt/perf.git"
},
"author": "Aliaksei Chapyzhenka",
"license": "MIT",
"bugs": {
"url": "https://github.com/circt/perf/issues"
},
"homepage": "https://github.com/circt/perf#readme",
"devDependencies": {
"@drom/eslint-config": "^0.10.0",
"browserify": "^17.0.0",
"chai": "^4.2.0",
"eslint": "^7.32.0",
"http-server": "^13.0.1",
"mocha": "^9.1.1",
"nyc": "^15.1.0",
"plotly.js-dist": "^2.4.1",
"watchify": "^4.0.0"
},
"dependencies": {
"circt": "^0.1.3",
"pidusage": "^2.0.21"
},
"eslintConfig": {
"extends": "@drom/eslint-config/eslint4/node8",
"parserOptions": {
"ecmaVersion": 2020
}
}
}