1 | {
|
2 | "name": "elapsing-time",
|
3 | "version": "3.2.0",
|
4 | "description": "Measures the runtime of code.",
|
5 | "main": "build/index.js",
|
6 | "types": "build/index.d.ts",
|
7 | "keywords": [
|
8 | "elapsing-time",
|
9 | "elapsed-time",
|
10 | "elapse-time",
|
11 | "time",
|
12 | "time-measurement",
|
13 | "time-elapse",
|
14 | "time-elapsing"
|
15 | ],
|
16 | "scripts": {
|
17 | "build:clean": "rm -rf build/*",
|
18 | "ts-compile": "tsc --declaration",
|
19 | "my-compile": "node ../compile.js",
|
20 | "build": "npm run build:clean && npm run ts-compile && npm run my-compile",
|
21 | "publish:prepare": "mkdir -p ./build/build && mv ./build/* ./build/build; cp ./package* README.md ./build",
|
22 | "pu": "npm pu ./build",
|
23 | "my-publish": "npm run publish:prepare && npm run pu"
|
24 | },
|
25 | "repository": {
|
26 | "type": "git",
|
27 | "url": "git+https://github.com/ArthurKa/elapsing-time.git"
|
28 | },
|
29 | "author": {
|
30 | "name": "ArthurKa",
|
31 | "email": "arthur.katruk@gmail.com"
|
32 | },
|
33 | "license": "ISC",
|
34 | "bugs": {
|
35 | "url": "https://github.com/ArthurKa/elapsing-time/issues"
|
36 | },
|
37 | "homepage": "https://github.com/ArthurKa/elapsing-time#readme",
|
38 | "devDependencies": {
|
39 | "@arthurka/eslint": "^1.2.0",
|
40 | "@types/node": "^14.14.35",
|
41 | "typescript": "^4.2.3"
|
42 | }
|
43 | }
|