-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 802 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 802 Bytes
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
{
"name": "timit",
"version": "1.0.0",
"description": "Measure JavaScript function execution time",
"main": "dist/timit.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack serve --open --config webpack.dev.js",
"build": "webpack"
},
"keywords": [
"performance",
"timeit",
"measure",
"execution time",
"intervals"
],
"author": "rciang",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/rcjiang/timit.git"
},
"bugs": {
"url": "https://github.com/rcjiang/timit/issues"
},
"homepage": "https://github.com/rcjiang/timit",
"devDependencies": {
"eslint": "^7.18.0",
"webpack": "^5.17.0",
"webpack-cli": "^4.4.0",
"webpack-dev-server": "^3.11.2"
}
}