-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
87 lines (87 loc) · 2.51 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
{
"name": "reactive-state",
"version": "3.7.1",
"description": "Redux-like state management using RxJS and TypeScript",
"main": "src/index.js",
"files": [
"src/**/*.js",
"src/**/*.js.map",
"src/**/*.d.ts",
"react/**/*.js",
"react/**/*.js.map",
"react/**/*.d.ts"
],
"types": "src/index.d.ts",
"sideEffects": false,
"scripts": {
"build": "tsc",
"build-tests": "tsc -p test",
"bundle": "webpack",
"coverage": "node node_modules/.bin/istanbul cover _mocha -- test/test",
"coveralls": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"prepublishOnly": "npm run build",
"prettier": "prettier --write {src,test,react}/**/*.{ts,tsx}",
"watch": "tsc -w --preserveWatchOutput",
"watch-tests": "tsc -w -p test --preserveWatchOutput",
"develop": "concurrently \"npm run watch\" \"npm run watch-tests\" ",
"run-tests": "mocha --timeout 10000 test/test.js",
"test": "npm run build-tests && npm run coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Dynalon/reactive-state.git"
},
"keywords": [
"Redux",
"State",
"reactive",
"RxJS",
"store",
"React"
],
"author": "Timo Dörr",
"license": "MIT",
"bugs": {
"url": "https://github.com/Dynalon/reactive-state/issues"
},
"homepage": "https://github.com/Dynalon/reactive-state",
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/enzyme": "^3.1.13",
"@types/jsdom": "^16.2.5",
"@types/lodash.isobject": "^3.0.3",
"@types/lodash.isplainobject": "^4.0.3",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.16",
"@types/node-fetch": "^2.5.4",
"@types/react": "17.0.0",
"@types/react-dom": "17.0.0",
"chai": "^4.2.0",
"concurrently": "^5.3.0",
"coveralls": "^3.0.0",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.15.5",
"jsdom": "^16.4.0",
"mocha": "^8.2.1",
"mocha-lcov-reporter": "^1.3.0",
"node-fetch": "^2.6.1",
"prettier": "^2.2.1",
"uglifyjs-webpack-plugin": "^2.1.2",
"webpack": "^5.11.0",
"webpack-cli": "^4.2.0",
"istanbul": "^0.4.5"
},
"dependencies": {
"lodash.isobject": "^3.0.2",
"lodash.isplainobject": "^4.0.6",
"rxjs": "^6.6.3",
"typescript": "^4.1.3"
},
"optionalDependencies": {
"redux": "^4.0.0"
},
"peerDependencies": {
"react": "^16.0.0 || ^17.0.1",
"react-dom": "^16.0.0 || ^17.0.1"
}
}