-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
44 lines (44 loc) · 1.49 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
{
"name": "@cycle/callbags",
"version": "4.1.0",
"description": "",
"main": "build/bundle.cjs.js",
"module": "build/bundle.esm.js",
"typings": "build/index.d.ts",
"scripts": {
"build": "tsc -b tsconfig.build.json && pnpm run bundle:esm && pnpm run bundle:cjs",
"bundle:esm": "rollup build/index.js --format esm --file build/bundle.esm.js",
"bundle:cjs": "rollup build/index.js --format cjs --file build/bundle.cjs.js",
"release": "pnpm run prepublishOnly && release-it",
"format": "prettier --write './{src,test,perf}/**/*'",
"test": "nyc --reporter text --reporter html pnpm run test:no_cover",
"test:ci": "nyc --reporter text --reporter json pnpm run test:no_cover",
"test:no_cover": "mocha --require ts-node/register 'test/*.ts'",
"benchmark": "ts-node perf/index.ts",
"prepublishOnly": "pnpm run build && pnpm test"
},
"author": "Jan van Brügge",
"license": "MIT",
"devDependencies": {
"@types/assert": "^1.5.6",
"@types/benchmark": "^2.1.1",
"@types/mocha": "^9.0.0",
"assert": "^2.0.0",
"benchmark": "github:bestiejs/benchmark.js#42f3b732bac3640eddb3ae5f50e445f3141016fd",
"callbag-basics": "^4.0.0",
"fast-check": "^2.18.0",
"mocha": "^9.1.3",
"most": "^1.9.0",
"nyc": "^15.1.0",
"prettier": "^2.4.1",
"release-it": "^14.11.6",
"rollup": "^2.58.0",
"rxjs": "^7.4.0",
"ts-node": "^10.4.0",
"typescript": "^4.4.4",
"xstream": "^11.14.0"
},
"publishConfig": {
"access": "public"
}
}