-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.3 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.3 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": "llamajs",
"version": "0.4.1",
"description": "A dynamic logger for the dynamic developer",
"main": "dist/index.js",
"types": "dist/index.d.js",
"scripts": {
"start": "tsc && set NODE_ENV=production&& node ./dist/index.js",
"test": "mocha --recursive ./dist/**/*.spec.js --exit",
"build": "tsc",
"pretest": "tsc",
"release": "standard-version",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/llamajs/llama.git"
},
"keywords": [
"Logger",
"Logs",
"js",
"typescript",
"llama",
"llamajs",
"llamalogger",
"llamalog",
"llamalogs"
],
"author": "Almog Vagman Ciprut",
"license": "MIT",
"bugs": {
"url": "https://github.com/llamajs/llama/issues"
},
"homepage": "https://github.com/llamajs/llama#readme",
"devDependencies": {
"@types/amqplib": "^0.8.0",
"@types/chai": "^4.1.4",
"@types/mocha": "^5.2.5",
"@types/mock-fs": "^3.6.30",
"@types/node": "^10.9.2",
"chai": "^4.1.2",
"mocha": "^9.0.1",
"mock-fs": "^4.6.0",
"nyc": "^15.0.0",
"standard-version": "^9.3.0",
"ts-node": "^8.7.0",
"tslint": "^5.11.0",
"tslint-config-airbnb": "^5.10.0",
"typescript": "^3.8.3"
},
"dependencies": {
"amqplib": "^0.8.0"
}
}