-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.2 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
43
44
45
46
47
48
{
"name": "@eik/sink",
"version": "1.2.5",
"description": "A Sink interface",
"main": "lib/main.js",
"types": "types/main.d.ts",
"type": "module",
"files": [
"CHANGELOG.md",
"package.json",
"README.md",
"lib",
"types"
],
"scripts": {
"clean": "rimraf .tap node_modules types",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "tap --disable-coverage --allow-empty-coverage tests/**/*.js",
"types": "run-s types:module types:test",
"types:module": "tsc",
"types:test": "tsc --project tsconfig.test.json"
},
"repository": {
"type": "git",
"url": "git@github.com:eik-lib/sink.git"
},
"author": "Trygve Lie",
"license": "MIT",
"bugs": {
"url": "https://github.com/eik-lib/sink/issues"
},
"homepage": "https://github.com/eik-lib/sink#readme",
"devDependencies": {
"@eik/common": "3.0.1",
"@eik/eslint-config": "1.0.7",
"@eik/prettier-config": "1.0.1",
"@eik/semantic-release-config": "1.0.0",
"@metrics/client": "2.5.4",
"eslint": "9.17.0",
"npm-run-all2": "5.0.2",
"prettier": "3.4.2",
"rimraf": "6.0.1",
"semantic-release": "24.2.0",
"tap": "18.8.0",
"typescript": "5.5.4"
}
}