-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.15 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.15 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
{
"name": "larvitutils",
"version": "5.1.188",
"description": "Misc utils",
"main": "./dist/index.js",
"files": [
"/dist"
],
"devDependencies": {
"@types/node": "24.12.0",
"@types/tape": "5.8.1",
"@typescript-eslint/eslint-plugin": "8.57.2",
"@typescript-eslint/parser": "8.57.2",
"eslint": "8.57.1",
"nyc": "18.0.0",
"tape": "5.9.0",
"ts-node": "10.9.2",
"typescript": "5.9.3"
},
"scripts": {
"build": "rm -rf ./dist/* && tsc && cp ./src/models.d.ts ./dist/",
"lint": "eslint ./src/* ./test/**/*.ts",
"test": "npm run lint && npm run build && ./node_modules/.bin/nyc ts-node -P ./tsconfig.json ./node_modules/tape/bin/tape test/**/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/larvit/larvitutils.git"
},
"keywords": [
"misc",
"uuid",
"replaceAll"
],
"author": "lillem4n <lilleman@larvit.se>",
"license": "ISC",
"bugs": {
"url": "https://github.com/larvit/larvitutils/issues"
},
"homepage": "https://github.com/larvit/larvitutils#readme",
"nyc": {
"include": [
"src/**/*.ts"
],
"extension": [
".ts"
]
}
}