-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·40 lines (40 loc) · 1.04 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
{
"name": "swiftlet-log",
"version": "1.1.0",
"description": "Logging utility with different log levels with timestamp options.",
"main": "./dist/swiftlet-log.cjs.js",
"module": "./dist/swiftlet-log.esm.js",
"browser": "./dist/swiftlet-log.min.js",
"unpkg": "./dist/swiftlet-log.min.js",
"types": "./dist/swiftlet-log.d.ts",
"scripts": {
"build": "swiftlet build",
"build:rollup": "npx rollup -c",
"build:tsc": "tsc",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"prepublishOnly": "npm run build && npm run test"
},
"keywords": [
"logging",
"logger",
"log",
"swiftlet"
],
"files": [
"dist"
],
"author": "Gavin Birkhoff <gavinbirkhoff@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.12",
"eslint-config-lavy": "1.0.2-Alpha.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lavy": "1.0.2-Alpha.0",
"swiftlet": "1.0.0-Alpha.4",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2"
}
}