-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 894 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 894 Bytes
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
{
"id": "64d00de7-2ead-42e9-8c63-16c82e3611ab",
"name": "@syncpoint/signal",
"version": "2.0.0",
"type": "module",
"description": "Algebraic type for time varying values",
"files": [
"dist",
"src",
"changelog"
],
"main": "./dist/signal.js",
"repository": {
"type": "git",
"url": "https://github.com/syncpoint/signal.git"
},
"scripts": {
"test": "mocha --recursive './test/**/*.test.js'",
"prepare": "vite build",
"coverage": "c8 -all --include 'lib/**/*' --reporter=html mocha './test/**/*.test.js'"
},
"keywords": [
"frp",
"signal",
"stream",
"functional",
"algebraic",
"type",
"time-varying"
],
"author": "horst.dehmer@syncpoint.io",
"license": "MIT",
"devDependencies": {
"c8": "^10.1.2",
"micro-bmark": "^0.3.1",
"mocha": "^10.7.0",
"ramda": "^0.30.1",
"vite": "^5.3.5"
}
}