-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 931 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 931 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
35
36
37
{
"name": "@tosee/log",
"version": "1.4.2",
"description": "",
"main": "./dist/lib/index.js",
"types": "./dist/lib/index.d.ts",
"scripts": {
"build": "tsc",
"coverage": "nyc --reporter=lcov --reporter=html npm run test && nyc report",
"test": "alsatian test/**/*.ts",
"start": "node test/index.js",
"codecov": "codecov",
"doc": "typedoc --out ./docs ./lib&&touch docs/.nojekyll"
},
"repository": {
"type": "git",
"url": "https://github.com/fullstackoverflow/log"
},
"author": "tosee",
"license": "MIT",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/node": "^18.0.0",
"alsatian": "^3.2.1",
"codecov": "^3.8.2",
"nyc": "^15.1.0",
"source-map-support": "^0.5.21",
"typescript": "^4.7.3"
},
"dependencies": {
"@tosee/color": "^1.0.3",
"dayjs": "^1.11.3"
},
"publishConfig": {
"access": "public"
}
}