|
2 | 2 | "name": "redux-devtools-serialize",
|
3 | 3 | "version": "0.1.9",
|
4 | 4 | "description": "Serialize unserializable data and parse it back.",
|
5 |
| - "main": "index.js", |
6 |
| - "scripts": { |
7 |
| - "test": "jest --no-cache", |
8 |
| - "prepublish": "npm run test" |
9 |
| - }, |
10 |
| - "repository": { |
11 |
| - "type": "git", |
12 |
| - "url": "https://github.com/reduxjs/redux-devtools.git" |
13 |
| - }, |
14 | 5 | "keywords": [
|
15 | 6 | "redux",
|
16 | 7 | "devtools"
|
17 | 8 | ],
|
18 |
| - "author": "Mihail Diordiev <zalmoxisus@gmail.com> (https://github.com/zalmoxisus)", |
19 |
| - "license": "MIT", |
| 9 | + "homepage": "https://github.com/reduxjs/redux-devtools/tree/master/packages/redux-devtools-serialize", |
20 | 10 | "bugs": {
|
21 | 11 | "url": "https://github.com/reduxjs/redux-devtools/issues"
|
22 | 12 | },
|
23 |
| - "homepage": "https://github.com/reduxjs/redux-devtools", |
24 |
| - "devDependencies": { |
25 |
| - "immutable": "^4.0.0-rc.12" |
| 13 | + "license": "MIT", |
| 14 | + "author": "Mihail Diordiev <zalmoxisus@gmail.com> (https://github.com/zalmoxisus)", |
| 15 | + "main": "lib/index.js", |
| 16 | + "types": "lib/index.d.ts", |
| 17 | + "repository": { |
| 18 | + "type": "git", |
| 19 | + "url": "https://github.com/reduxjs/redux-devtools.git" |
| 20 | + }, |
| 21 | + "scripts": { |
| 22 | + "build": "npm run build:types && npm run build:js", |
| 23 | + "build:types": "tsc --emitDeclarationOnly", |
| 24 | + "build:js": "babel src --out-dir lib --extensions \".ts\" --source-maps inline", |
| 25 | + "clean": "rimraf lib", |
| 26 | + "test": "jest", |
| 27 | + "lint": "eslint . --ext .ts", |
| 28 | + "lint:fix": "eslint . --ext .ts --fix", |
| 29 | + "type-check": "tsc --noEmit", |
| 30 | + "type-check:watch": "npm run type-check -- --watch", |
| 31 | + "preversion": "npm run type-check && npm run lint && npm run test", |
| 32 | + "prepublishOnly": "npm run clean && npm run build" |
26 | 33 | },
|
27 | 34 | "dependencies": {
|
28 | 35 | "jsan": "^3.1.13"
|
| 36 | + }, |
| 37 | + "devDependencies": { |
| 38 | + "immutable": "^4.0.0-rc.12" |
| 39 | + }, |
| 40 | + "peerDependencies": { |
| 41 | + "immutable": "^4.0.0-rc.12" |
29 | 42 | }
|
30 | 43 | }
|
0 commit comments