-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1.02 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
{
"name": "@kahlil/flow-state",
"version": "10.0.1",
"description": "A simple Redux-type library entirely based on RxJS streams. This is an easy way to introduce a stream-based unidirectional dataflow into your app.",
"license": "MIT",
"repository": "kahlil/flow-state",
"author": "Kahlil Lechelt",
"source": "src/flow-state.js",
"main": "dist/flow-state.js",
"module": "dist/flow-state.mjs",
"unpkg": "dist/flow-state.umd.js",
"scripts": {
"build": "microbundle",
"build:watch": "microbundle watch",
"clean": "rimraf dist",
"prepublishOnly": "yarn build",
"test": "eslint src/** && prettier --check \"src/**/*.js\" && ava"
},
"ava": {
"require": [
"esm"
]
},
"peerDependencies": {
"rxjs": ">=6.0.0"
},
"devDependencies": {
"ava": "2.2.0",
"eslint": "6.1.0",
"eslint-config-es2015": "1.1.0",
"eslint-config-prettier": "6.0.0",
"esm": "3.2.25",
"microbundle": "0.11.0",
"prettier": "1.18.2",
"rimraf": "2.6.3",
"rxjs": "6.5.2"
}
}