-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.42 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
{
"name": "iterplus",
"version": "3.0.2",
"description": "The best of Rust/Haskell/Python iterators in Javascript.",
"main": "dest/src/index.js",
"types": "dest/src/index.d.ts",
"scripts": {
"test": "jest",
"gen": "node ./generateSources.js",
"deno": "node ./generateDeno.js",
"build": "tsc",
"doc": "typedoc --options typedoc.json && cp docconfig.yml docs/config.yml && touch docs/.nojekyll",
"format": "prettier --write src deno_compat",
"check": "eslint src",
"magic": "npm run gen && npm run deno && npm run format && npm run build && npm test",
"bundle": "webpack",
"full": "npm run gen && npm run deno && npm run format && npm run check && npm run build && npm run doc && npm run bundle && npm test"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/Aplet123/iterplus.git"
},
"keywords": [
"iterator",
"lazy"
],
"author": "Aplet123",
"license": "MIT",
"bugs": {
"url": "https://github.com/Aplet123/iterplus/issues"
},
"homepage": "https://github.com/Aplet123/iterplus#readme",
"devDependencies": {
"@types/jest": "^27.4.0",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"eslint": "^8.8.0",
"jest": "^27.5.0",
"prettier": "^2.3.2",
"ts-jest": "^27.1.3",
"typedoc": "^0.22.11",
"typescript": "^4.5.5",
"webpack": "^5.68.0",
"webpack-cli": "^4.9.2"
}
}