UNPKG

1.48 kBJSONView Raw
1{
2 "name": "redux-leaves",
3 "version": "0.4.0",
4 "description": "Write once. Reduce anywhere",
5 "main": "dist/index.js",
6 "license": "MIT",
7 "author": {
8 "name": "Richard Ng",
9 "email": "hi@richard.ng",
10 "url": "https://github.com/richardcrng/"
11 },
12 "dependencies": {
13 "@types/jest": "^24.0.16",
14 "@types/node": "^12.6.8",
15 "@types/ramda": "^0.26.18",
16 "change-case": "^3.1.0",
17 "immer": "^3.1.2",
18 "ramda": "^0.26.1",
19 "ramda-adjunct": "^2.18.0",
20 "redux": "^4.0.1"
21 },
22 "repository": {
23 "type": "git",
24 "url": "https://github.com/richardcrng/redux-leaves"
25 },
26 "scripts": {
27 "type-check": "tsc --noEmit",
28 "type-check:watch": "npm run type-check -- --watch",
29 "build": "npm run build:types && npm run build:js",
30 "build:types": "tsc --emitDeclarationOnly",
31 "build:js": "babel src --out-dir dist --extensions \".ts,.tsx\" --source-maps inline",
32 "prepublishOnly": "npm run build",
33 "test": "jest --watch"
34 },
35 "eslintConfig": {
36 "extends": "react-app"
37 },
38 "devDependencies": {
39 "@babel/cli": "^7.5.5",
40 "@babel/core": "^7.5.5",
41 "@babel/plugin-proposal-class-properties": "^7.5.5",
42 "@babel/plugin-proposal-numeric-separator": "^7.2.0",
43 "@babel/plugin-proposal-object-rest-spread": "^7.5.5",
44 "@babel/preset-env": "^7.5.5",
45 "@babel/preset-typescript": "^7.3.3",
46 "babel-jest": "^24.7.1",
47 "coveralls": "^3.0.3",
48 "jest": "^24.7.1",
49 "typescript": "^3.5.3"
50 }
51}