-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
70 lines (70 loc) · 1.97 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "quel",
"version": "0.3.7",
"description": "Expression-based reactive library for hot listenables",
"main": "dist/commonjs/index.js",
"module": "dist/es/index.js",
"types": "dist/es/index.d.ts",
"scripts": {
"sample": "vite sample",
"test": "jest",
"lint": "eslint .",
"typecheck": "tsc -p conf/typescript/es.json --noEmit",
"coverage": "jest --coverage",
"build-commonjs": "tsc -p conf/typescript/commonjs.json",
"build-es": "tsc -p conf/typescript/es.json",
"build": "npm run build-commonjs && npm run build-es",
"prepack": "npm run build",
"bench:perf": "ts-node ./benchmark/perf",
"bench:mem": "node -r ts-node/register --expose-gc ./benchmark/mem",
"bench": "npm run bench:perf && npm run bench:mem"
},
"files": [
"dist/es",
"dist/commonjs"
],
"sideEffects": false,
"repository": {
"type": "git",
"url": "git+https://github.com/loreanvictor/quel.git"
},
"keywords": [
"reactive",
"expression",
"stream",
"observable"
],
"author": "Eugene Ghanizadeh Khoub",
"license": "MIT",
"bugs": {
"url": "https://github.com/loreanvictor/quel/issues"
},
"homepage": "https://github.com/loreanvictor/quel#readme",
"devDependencies": {
"@babel/core": "^7.20.5",
"@babel/preset-env": "^7.20.2",
"@sindresorhus/tsconfig": "^3.0.1",
"@types/benchmark": "^2.1.2",
"@types/jest": "^29.2.3",
"@types/node": "^18.11.10",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"babel-jest": "^29.3.1",
"benchmark": "^2.1.4",
"chalk": "^4.1.2",
"eslint": "^8.28.0",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"rxjs": "^7.5.7",
"sleep-promise": "^9.1.0",
"streamlets": "^0.5.1",
"table": "^6.8.1",
"test-callbag-jsx": "^0.4.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tslib": "^2.4.1",
"typescript": "^5.2.2",
"vite": "^3.2.4",
"xstream": "^11.14.0"
}
}