This repository was archived by the owner on Aug 22, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.4 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.4 KB
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
{
"name": "stopwatch2",
"version": "0.0.7",
"description": "Measure the running time of JavaScript code. (Mainly used for calculate the total running time of a piece of code.)",
"main": "index.js",
"types": "./index.d.ts",
"scripts": {
"prepublishOnly": "make prepublishOnly",
"dev": "make dev",
"build": "make build",
"lint": "make lint",
"test": "make tests",
"test-ci": "make testsCI"
},
"files": [
"index.js",
"index.d.ts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/zjffun/stopwatch.git"
},
"author": "JuFeng Zhang",
"license": "MIT",
"bugs": {
"url": "https://github.com/zjffun/stopwatch/issues"
},
"homepage": "https://github.com/zjffun/stopwatch#readme",
"keywords": [
"performace",
"measure",
"start-and-pause",
"total-runtime"
],
"devDependencies": {
"@rollup/plugin-typescript": "^5.0.2",
"chai": "^4.2.0",
"chokidar-cli": "^2.1.0",
"codecov": "^3.8.0",
"eslint": "^7.0.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-mocha": "^7.0.0",
"karma": "^5.0.9",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-firefox-launcher": "^1.3.0",
"karma-mocha": "^2.0.1",
"mocha": "^7.1.2",
"nyc": "^15.1.0",
"rollup": "^1.27.5",
"tslib": "^2.0.0",
"typescript": "^4.0.5"
}
}