-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
35 lines (35 loc) · 976 Bytes
/
package.json
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
{
"name": "@w3f/logger",
"version": "0.4.3",
"description": "Logger functionality",
"repository": "git@github.com:w3f/logger-ts.git",
"author": "W3F Infrastructure Team <devops@web3.foundation>",
"license": "Apache-2.0",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"lint": "yarn eslint . --ext .js,.jsx,.ts,.tsx",
"build": "tsc --build tsconfig.json",
"prepare": "yarn build",
"pretest": "yarn lint",
"test": "mocha --timeout 10000 --require ts-node/register --exit test/**/*.ts",
"start": "node ./dist/src/index.js start"
},
"dependencies": {
"winston": "^3.3.3"
},
"devDependencies": {
"@types/chai": "4.2.18",
"@types/mocha": "7.0.2",
"@typescript-eslint/eslint-plugin": "2.34.0",
"@typescript-eslint/parser": "2.34.0",
"chai": "4.3.4",
"eslint": "6.8.0",
"mocha": "7.2.0",
"ts-node": "8.10.2",
"typescript": "3.9.9"
}
}