-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.31 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.31 KB
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
{
"name": "simplyflow",
"version": "0.7.5",
"description": "Flow based programming in javascript, with signals and effects",
"main": "src/flow.mjs",
"type": "module",
"directories": {
"example": "examples"
},
"scripts": {
"build": "esbuild src/flow.mjs --bundle --outfile=dist/simply.flow.min.js --minify --sourcemap",
"build-dev": "esbuild src/flow.mjs --bundle --outfile=dist/simply.flow.js",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"watch": "watch 'npm run build-dev' ./src & npx http-server ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/simplyedit/simplyflow.git"
},
"keywords": [
"UI",
"components",
"declarative",
"reactive"
],
"author": "auke@muze.nl",
"license": "MIT",
"bugs": {
"url": "https://github.com/simplyedit/simplyflow/issues"
},
"homepage": "https://github.com/simplyedit/simplyflow#readme",
"engines": {
"node": ">=20.0.0"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"esbuild": "^0.24.2",
"globals": "^15.13.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0"
},
"files": [
"README.md",
"dist/",
"src/"
],
"jest": {
"transform": {},
"testEnvironment": "jsdom"
},
"dependencies": {
"watch": "^1.0.2"
}
}