-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
69 lines (69 loc) · 1.7 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "gensequence",
"version": "7.0.0",
"description": "Small library to simplify working with Generators and Iterators in Javascript / Typescript",
"type": "module",
"module": "dist/index.js",
"sideEffects": false,
"exports": {
".": {
"import": "./dist/index.js"
},
"./operators": {
"import": "./dist/operators/index.js"
}
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"@tsconfig/node18": "^18.2.4",
"@types/node": "^18.19.68",
"@vitest/coverage-istanbul": "^2.1.8",
"prettier": "^3.4.2",
"shx": "^0.3.4",
"ts2mjs": "^3.0.0",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"scripts": {
"prepublishOnly": "npm run clean-build",
"clean-build": "npm run clean && npm run build",
"clean": "shx rm -rf dist coverage",
"test": "vitest run",
"build": "tsc -p .",
"lint": "npm run lint:prettier",
"lint:prettier": "prettier . -w",
"watch": "tsc -w -p .",
"coverage": "npm test -- --coverage",
"update-packages": "npx npm-check-updates -t semver -u && shx rm -rf node_modules package-lock.json && npm i"
},
"repository": {
"type": "git",
"url": "git+https://github.com/streetsidesoftware/GenSequence.git"
},
"keywords": [
"generators",
"generator",
"iterator",
"iterators",
"iterable",
"functional",
"map",
"reduce"
],
"files": [
"dist/",
"!**/*.tsbuildInfo",
"!**/samples",
"!**/*.map",
"!**/*.test.*",
"!**/*.perf.*"
],
"author": "Jason Dent",
"license": "MIT",
"bugs": {
"url": "https://github.com/streetsidesoftware/GenSequence/issues"
},
"homepage": "https://github.com/streetsidesoftware/GenSequence#readme"
}