-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
67 lines (67 loc) · 1.61 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
{
"name": "@captaincodeman/rdx",
"version": "1.0.0-rc.9",
"description": "Small state library. Like Redux, but smaller",
"type": "module",
"module": "lib/index.js",
"main": "lib/index.js",
"types": "typings/index.d.ts",
"sideEffects": false,
"files": [
"lib",
"typings"
],
"exports": {
".": "./lib/index.js"
},
"scripts": {
"docs": "docsify serve ./docs",
"build": "rollup -c",
"build:watch": "rollup -c -w",
"test": "package-check",
"test:watch": "mocha -w",
"test:types": "dtslint ./test/types",
"prepublishOnly": "npm run build",
"start": "node server.js"
},
"author": "Simon Green <[email protected]> (https://github.com/captaincodeman)",
"license": "ISC",
"homepage": "https://captaincodeman.github.io/rdx/",
"repository": {
"type": "git",
"url": "git://github.com/CaptainCodeman/rdx"
},
"bugs": {
"url": "https://github.com/CaptainCodeman/rdx/issues"
},
"keywords": [
"lightweight",
"tiny",
"state",
"client",
"store",
"redux",
"immutable",
"reducer"
],
"devDependencies": {
"@rollup/plugin-typescript": "^6.0.0",
"@skypack/package-check": "^0.1.0",
"browser-sync": "^2.26.13",
"chai": "^4.2.0",
"compression": "^1.7.4",
"conditional-type-checks": "^1.0.5",
"docsify-cli": "^4.4.1",
"dtslint": "^4.0.4",
"mocha": "^8.2.0",
"redux": "^4.0.5",
"rollup": "^2.32.1",
"rollup-plugin-size": "^0.2.2",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.0.3",
"typescript": "^4.0.3"
},
"dependencies": {
"@captaincodeman/router": "^1.0.3"
}
}