-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.27 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": "@codecb/iterator",
"version": "0.0.1",
"description": "🌡 An implementation of the Iterator helpers proposal",
"type": "module",
"license": "MIT",
"author": {
"email": "icodemyownlife@gmail.com",
"name": "ICodeMyOwnLife"
},
"repository": {
"type": "git",
"url": "https://github.com/code-cb/iterator"
},
"homepage": "https://github.com/code-cb/iterator",
"files": [
"./dist"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": "./dist/index.js",
"scripts": {
"build": "rollup -c rollup.config.ts --configPlugin=rollup-plugin-ts --bundleConfigAsCjs",
"prepublishOnly": "yarn build",
"test": "jest --coverage",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@babel/core": "^7.20",
"@babel/preset-env": "^7.20",
"@babel/preset-typescript": "^7.18",
"@codecb/babel-jest": "0.0.4",
"@codecb/jest-config-ts": "0.0.5",
"@codecb/prettierrc": "0.0.1",
"@codecb/ts-utils": "0.6.5",
"@codecb/tsconfigs": "0.0.10",
"@rollup/plugin-terser": "0.2.0",
"@types/jest": "^29.2",
"@types/node": "^18.11",
"jest": "^29.3",
"prettier": "^2.8",
"rollup": "^3.7",
"rollup-plugin-ts": "^3.0",
"typescript": "^4.9"
},
"prettier": "@codecb/prettierrc"
}