-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.26 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
49
{
"name": "@neylion/log",
"version": "1.0.2",
"description": "Logger package",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"test": "mocha -r ts-node/register test/**/*Test.ts && echo 'Running linter...' && npm run lint && echo 'Done.'",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint"
},
"repository": {
"type": "git",
"url": "https://github.com/Neylion/ney-log"
},
"keywords": [
"logging"
],
"author": "Fredrik Lindberg",
"license": "ISC",
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/deep-freeze": "^0.1.2",
"@types/events": "^3.0.0",
"@types/mocha": "^7.0.2",
"@types/sinon": "^9.0.0",
"chai": "^4.2.0",
"mocha": "^7.1.1",
"prettier": "^2.0.4",
"ts-node": "^8.8.2",
"tslint": "^6.1.1",
"tslint-config-prettier": "^1.18.0",
"tslint-no-unused-expression-chai": "^0.1.4",
"typescript": "^3.8.3"
},
"dependencies": {
"@neylion/request-context": "^1.0.1",
"deep-freeze": "0.0.1",
"events": "^3.1.0",
"sinon": "^9.0.2"
}
}