-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
97 lines (97 loc) · 2.44 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "@riot-tools/meiosis",
"version": "4.0.0",
"description": "Dependency free state manager for Riot inspired by Meiosis pattern",
"main": "dist/umd.js",
"module": "dist/es.js",
"cdn": "dist/iife.js",
"typings": "dist/types/index.d.ts",
"files": [
"dist",
"readme"
],
"scripts": {
"build": "rollup --bundleConfigAsCjs -c",
"test": "NODE_OPTIONS='--import tsx' NODE_ENV=test mocha -r ./test/_setup.js 'test/**/*.ts'",
"lint": "tsc --noEmit",
"preview": "parcel index.html --open",
"prepare": "husky install",
"release": "semantic-release",
"commit": "commit"
},
"repository": {
"type": "git",
"url": "[email protected]:riot-tools/meiosis.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"keywords": [
"riot",
"meiosis",
"state-manager",
"erre",
"stream",
"state",
"riot4"
],
"author": "Danilo Alonso",
"license": "MIT",
"bugs": {
"url": "https://github.com/riot-tools/meiosis/issues"
},
"homepage": "https://github.com/riot-tools/meiosis#readme",
"babel": {
"presets": [
"@babel/preset-env"
]
},
"peerDependencies": {
"riot": ">=9.x.x"
},
"dependencies": {
"@riot-tools/sak": "^2.x.x",
"@riot-tools/state-utils": "1.2.3"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.12.11",
"@babel/register": "^7.12.13",
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@commitlint/prompt-cli": "^19.2.0",
"@parcel/config-default": "^2.12.0",
"@riotjs/cli": "^9",
"@riotjs/compiler": "^9",
"@riotjs/hot-reload": "^9",
"@riotjs/parcel-transformer-riot": "^9.0.2",
"@riotjs/register": "^9",
"@semantic-release/changelog": "^6",
"@semantic-release/git": "^10",
"@types/chai": "^4",
"@types/mocha": "^10",
"@types/node": "^20",
"@types/sinon": "^17",
"chai": "^5",
"cz-conventional-changelog": "^3",
"fast-check": "^3",
"husky": "^9",
"jsdom": "^24",
"mocha": "^10",
"parcel": "^2.12.0",
"riot": ">=9",
"rollup": "^4",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-terser": "^7",
"rollup-plugin-typescript2": "^0.36.0",
"semantic-release": "^23",
"sinon": "^17",
"tsx": "^4.7.1",
"typescript": ">=5"
},
"resolutions": {
"rollup": "npm:@rollup/wasm-node"
}
}