-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.41 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "@datasquad/logger-js",
"version": "0.2.0",
"description": "better log for JS/TS",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"dev": "nodemon src/index.ts",
"build": "npm run lint && rimraf dist/ && tsc",
"start": "npm run build && node dist/index.js",
"test": "mocha --require ts-node/register \"./test/**/*.spec.ts\"",
"test-watch": "nodemon -e ts,json --exec \"npm test\"",
"lint": "eslint src/**/*.ts",
"format": "prettier --config ./.prettierrc --write ./src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/D4t4Squ4d/logger-js.git"
},
"keywords": [
"logger"
],
"author": "DataSquad <contact@data-squad.net>",
"license": "SEE IN LICENSE",
"bugs": {
"url": "https://github.com/D4t4Squ4d/logger-js/issues"
},
"homepage": "https://github.com/D4t4Squ4d/logger-js#readme",
"devDependencies": {
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"@types/node": "^20.4.1",
"@types/sinon": "^10.0.15",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"chai": "^4.3.7",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^5.0.0",
"mocha": "^10.2.0",
"nodemon": "^3.0.1",
"prettier": "^3.0.0",
"rimraf": "^3.0.2",
"sinon": "^15.2.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
}
}