-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.43 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
{
"name": "behavior-state",
"description": "Utilities for building applications with RxJS, React, Jest, and the BLoC pattern",
"license": "MIT",
"version": "0.0.12",
"scripts": {
"build": "yarn clean && yarn build-dist && yarn build-readme",
"clean": "rm -f *.d.ts *.js *.map spring/* react/* preact/* jest/*",
"build-dist": "tsc --outDir ./",
"build-readme": "typedoc --theme markdown --mode file --hideGenerator --excludeNotExported --excludePrivate --excludeExternals --out ./docs ./src"
},
"main": "index.js",
"author": {
"email": "cole@colelawrence.com",
"name": "Cole Lawrence"
},
"keywords": [
"frp",
"bloc",
"business logic",
"state",
"behavior",
"behaviour",
"state management",
"typescript",
"rxjs",
"jest",
"react",
"reactnyc",
"nyc"
],
"optionalDependencies": {
"dotjsx": "*",
"jest": "*",
"preact": "*",
"react": "*"
},
"peerDependencies": {
"rxjs": "^7.0.0-alpha"
},
"devDependencies": {
"@types/jest": "^24.0.18",
"@types/raf": "^3.4.0",
"@types/react": "^16.9.4",
"jest": "^24",
"preact": "^10.0.0",
"react": "^16",
"rxjs": "^7.0.0-alpha",
"typedoc": "^0.15.0",
"typedoc-plugin-internal-external": "^2.0.2",
"typedoc-plugin-markdown": "^2.1.10",
"typescript": "^3.6.2"
},
"dependencies": {
"csstype": "^2.6.7",
"performance-now": "^2.1.0",
"raf": "^3.4.1"
}
}