-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.39 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.39 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
{
"name": "@larvit/log",
"version": "1.7.1",
"type": "module",
"license": "MIT",
"packageManager": "yarn@4.6.0",
"scripts": {
"build-and-publish": "npm run build && npm publish",
"build": "rm -f index.js index.d.ts index.js.map && tsc && uglifyjs index.js -o index.js && npm run replace-version-string",
"lint-fix": "eslint --fix index.ts test.ts",
"lint": "eslint index.ts test.ts",
"replace-version-string": "grep -o '\"version\": \"[^\"]*\"' package.json | cut -d'\"' -f4 | xargs -I {} sed -i 's/__version__/{}/g' index.js",
"test-unit": "node --loader ts-node/esm test.ts | tap-spec",
"test": "corepack prepare yarn@4.6.0 --activate && npm run build && yarn test-unit && yarn lint"
},
"devDependencies": {
"@larvit/eslint-config-typescript-esm": "1.2.1",
"@randomgoods/tap-spec": "5.0.4",
"@types/express": "5.0.0",
"@types/node": "22.13.4",
"@types/tape": "5.8.1",
"eslint": "8.57.1",
"express": "5.0.1",
"tape": "5.9.0",
"ts-node": "10.9.2",
"typescript": "5.7.3",
"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"
]
}