-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 881 Bytes
/
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
{
"name": "recirculate",
"version": "0.1.1",
"description": "Air conditioning system for dynamic webapps.",
"main": "src/index.js",
"repository": "https://gitlab.com/robbiewxyz/recirculate",
"homepage": "https://recirculate.robbiew.xyz",
"author": "Robbiewxyz <[email protected]>",
"license": "MIT",
"funding": {},
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"typecheck": "tsc --noEmit",
"typecheck:watch": "tsc --noEmit --watch",
"release": "",
"docs": ""
},
"jest": {
"testRegex": "test/.+\\.ts$"
},
"dependencies": {},
"devDependencies": {
"@babel/preset-env": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@types/jest": "^26.0.4",
"jest": "^26.1.0",
"typescript": "^3.9.6"
},
"keywords": [
"recirculate",
"reactive",
"frp",
"state",
"functional reactive programming",
"state management",
"data flow"
]
}