This repository was archived by the owner on Mar 23, 2023. 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
executable file
·55 lines (55 loc) · 1.32 KB
/
package.json
File metadata and controls
executable file
·55 lines (55 loc) · 1.32 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": "exer",
"version": "0.0.42",
"description": "Utils in TypeScript, Debug, NanoTimer ...",
"author": "kbajalc@gmail.com",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kbajalc/exer.git"
},
"bugs": {
"url": "https://github.com/kbajalc/exer/issues"
},
"tags": [
"typescript",
"utils",
"debug",
"timer"
],
"main": "lib/index.js",
"types": "./lib/index.d.ts",
"source": "./src/index.ts",
"files": [
"lib",
"src"
],
"origin": {
"debug": "4.1.0",
"nanotimer": "0.3.15"
},
"scripts": {
"clean": "rm -rf lib",
"build": "rm -rf lib ; tsc -p . ; tslint -p .",
"watch": "rm -rf lib ; tsc -p . --watch",
"release": "npm run build && npm version patch && git push --follow-tags && npm publish",
"beta": "npm run build && npm version patch && git push --follow-tags && npm publish --tag beta"
},
"dependencies": {
"lodash": "^4.17.20",
"reflect-metadata": "^0.1.13",
"uuid": "^3.4.0"
},
"devDependencies": {
"@types/chance": "^1.1.0",
"@types/lodash": "^4.14.162",
"@types/node": "^10.17.42",
"@types/uuid": "^3.4.9",
"chance": "^1.1.7",
"ts-node": "^9.0.0",
"tslint": "^5.20.1",
"tslint-config-airbnb": "^5.11.2",
"tty": "^1.0.1",
"typescript": "^4.0.3"
}
}