-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.65 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
{
"name": "verdux",
"version": "0.6.5",
"description": "Type-safe, reactive, immutable state management",
"keywords": [
"typescript",
"redux",
"rxjs",
"state"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/couzic/verdux.git"
},
"homepage": "https://github.com/couzic/verdux#readme",
"bugs": {
"url": "https://github.com/couzic/verdux/issues"
},
"author": {
"name": "Mikael Couzic",
"email": "mikaelcouzic@gmail.com",
"url": "https://github.com/couzic"
},
"scripts": {
"prebuild": "npm run test && shx rm -rf ./lib",
"build": "tsc && npm run doctoc",
"prepare": "npm run build",
"doctoc": "doctoc . --notitle --maxlevel 4",
"test": "clear && mocha",
"tdd": "clear && mocha --watch"
},
"files": [
"lib",
"src"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"mocha": {
"require": "ts-node/register",
"extension": [
"ts"
],
"spec": [
"src/**/*.test.ts"
],
"reporter": "dot"
},
"peerDependencies": {
"@reduxjs/toolkit": "^2.0.0",
"rxjs": "^7.0.0"
},
"devDependencies": {
"@reduxjs/toolkit": "^2.0.0",
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@types/sinon": "^17.0.2",
"@types/sinon-chai": "^3.2.9",
"chai": "^4.3.7",
"doctoc": "^2.2.1",
"mocha": "^10.2.0",
"prettier": "^3.0.2",
"rxjs": "^7.8.0",
"shx": "^0.3.4",
"sinon": "^17.0.1",
"sinon-chai": "^3.7.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}