-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·51 lines (51 loc) · 1.95 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
{
"name": "@syrflover/iterator",
"version": "0.5.0",
"description": "Iterator Helper for TypeScript",
"main": "dist/mod.js",
"types": "dist/mod.d.ts",
"files": [
"dist"
],
"scripts": {
"start": "LOG_LEVEL=trace deno run --allow-env --unstable --config tsconfig.json src/playground.ts",
"test": "npm run build:deno && deno run --unstable --allow-run --allow-write --allow-read ./scripts/test.ts",
"test:reload": "npm run build:deno && deno run --unstable --allow-run --allow-write --allow-read --reload ./scripts/test.ts",
"build:node": "rm -rf ./dist && rm -rf ./.temp && deno run --reload --allow-read --allow-write scripts/node_build_1.ts && node scripts/node_build_2.js",
"build:deno": "rm -rf ./deno && deno run --reload --allow-read --allow-write scripts/deno_build.ts && npm run fmt",
"lint": "eslint src/**/*.ts",
"fmt": "deno fmt ./deno/**/*.ts",
"prepublishOnly": "npm run lint && npm run fmt && npm run test:reload && npm run build:node && npm run build:deno"
},
"author": {
"name": "Lee Tae Woo",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/syrflover/iterator-helper/issues"
},
"repository": {
"url": "https://github.com/syrflover/iterator-helper.git",
"type": "git"
},
"license": "MIT",
"keywords": [
"async iterator",
"iterator",
"async"
],
"devDependencies": {
"@types/node": "^15.3.1",
"@typescript-eslint/eslint-plugin": "^4.24.0",
"@typescript-eslint/parser": "^4.24.0",
"eslint": "^7.26.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.23.0",
"rollup": "^2.48.0",
"rollup-plugin-ignore": "^1.0.9",
"rollup-plugin-re": "^1.0.7",
"rollup-plugin-typescript2": "^0.30.0",
"typescript": "^4.2.4",
"typescript-deno-plugin": "^1.31.0"
}
}