-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 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
41
42
{
"name": "@larvit/log",
"version": "1.2.2",
"type": "module",
"license": "MIT",
"packageManager": "[email protected]",
"scripts": {
"build": "rm -f index.js index.d.ts index.js.map && tsc && uglifyjs index.js -o index.js",
"lint-fix": "eslint --fix index.ts test.ts",
"lint": "eslint index.ts test.ts",
"test-unit": "node --loader ts-node/esm test.ts | tap-spec",
"test": "yarn test-unit && yarn lint"
},
"devDependencies": {
"@larvit/eslint-config-typescript-esm": "1.2.1",
"@randomgoods/tap-spec": "5.0.4",
"@types/node": "22.5.5",
"@types/tape": "5.6.4",
"eslint": "8.57.1",
"tape": "5.9.0",
"ts-node": "10.9.2",
"typescript": "5.6.2",
"uglify-js": "3.19.3"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/larvit/log.git"
},
"main": "index.js",
"files": [
"index.d.ts",
"index.js.map",
"index.js",
"LICENSE",
"package.json",
"README.md"
]
}