-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.09 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
{
"name": "subx",
"version": "0.10.1",
"description": "SubX, Next generation state container",
"repository": "git@github.com:tylerlong/subx.git",
"author": "Tyler Long <tyler4long@gmail.com>",
"license": "MIT",
"main": "build/index.js",
"types": "build/index.d.ts",
"keywords": [
"SubX",
"Sub X",
"Reactive Subject",
"State Container"
],
"scripts": {
"bench": "ts-node benchmark/find.ts",
"test": "jest -w 1 --forceExit",
"prepublishOnly": "yarn test && rm -rf build && tsc"
},
"dependencies": {
"@types/lodash": "^4.14.172",
"lodash": "^4.17.21",
"rxjs": "^7.3.0"
},
"devDependencies": {
"@types/benchmark": "^2.1.1",
"@types/jest": "^27.0.1",
"@types/node": "^16.7.1",
"@types/ramda": "^0.27.44",
"benchmark": "^2.1.4",
"gts": "^3.1.0",
"hyperid": "^2.3.1",
"jest": "^27.0.6",
"ramda": "^0.27.1",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"typescript": "^4.3.5",
"wait-for-async": "^0.5.0",
"yarn-upgrade-all": "^0.5.4"
},
"files": [
"build/*",
"src/*",
"yarn.lock"
]
}