forked from repeaterjs/repeater
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.38 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
{
"name": "@usegraffy/eventual",
"version": "3.0.4",
"description": "A grand unification of promises and async iterators",
"repository": {
"type": "git",
"url": "https://github.com/usegraffy/eventual"
},
"license": "MIT",
"files": [
"eventual.js",
"*.d.ts",
"*.js.map",
"cjs"
],
"type": "module",
"main": "cjs/eventual.js",
"module": "eventual.js",
"types": "eventual.d.ts",
"scripts": {
"prebuild": "yarn run clean",
"build": "rollup -c ./rollup.config.js",
"clean": "shx rm -rf cjs dist eventual.js *.d.ts *.js.map",
"lint": "eslint --ext ts src",
"prepublishOnly": "yarn run test && yarn run build",
"test": "jest --config ./jest.config.cjs --rootDir ./ --color"
},
"devDependencies": {
"@types/jest": "^26.0.7",
"@typescript-eslint/eslint-plugin": "^3.7.1",
"@typescript-eslint/parser": "^3.7.1",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.4.0",
"eslint-config-recommended-plus-types": "^1.0.0",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.2.1",
"magic-string": "^0.25.7",
"prettier": "^2.0.5",
"rollup": "^2.23.0",
"rollup-plugin-typescript2": "^0.27.1",
"shx": "^0.3.2",
"ts-jest": "^26.1.4",
"ts-transform-import-path-rewrite": "^0.2.1",
"typescript": "^3.9.7"
},
"publishConfig": {
"access": "public"
}
}