-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.37 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
{
"name": "@cpietrzykowski/value-separated-iterable",
"version": "0.1.2",
"keywords": [],
"homepage": "https://github.com/cpietrzykowski/js-value-separated-iterable",
"description": "A value separated iterable for Javascript.",
"author": "Christopher Pietrzykowski",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/cpietrzykowski/js-value-separated-iterable.git"
},
"scripts": {
"build": "tsc",
"postbuild": "npm run build:test",
"build:test": "c8 --all --reporter=none ava --config ava.build.config.mjs src/**/*",
"postbuild:test": "npm run coverage:report",
"coverage:report": "c8 report",
"lint": "eslint \"src/**/*.ts\"",
"test": "c8 ava --config ava.config.mjs src/**/*"
},
"files": [
"lib/index.js",
"lib/index.d.ts",
"lib/index.js.map"
],
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"devDependencies": {
"@ava/typescript": "^4.1.0",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"ava": "^6.1.2",
"c8": "^9.1.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-ava": "^14.0.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.4.3"
},
"private": false,
"publishConfig": {
"access": "public"
}
}