|
1 | 1 | {
|
2 | 2 | "name": "morphism",
|
3 |
| - "version": "0.8.0", |
4 |
| - "description": "Helps you to transform any object structure to another", |
| 3 | + "version": "0.8.1", |
| 4 | + "description": |
| 5 | + "Library to transform any Object / JSON to JavaScript Object Literals, and ES6 Class Objects. Help you scale your data processing", |
5 | 6 | "homepage": "https://emyann.github.io/morphism/",
|
6 | 7 | "scripts": {
|
7 | 8 | "start": "npm run server:dev",
|
8 | 9 | "server": "npm run server:dev",
|
9 | 10 | "server:dev": "webpack-dashboard -- webpack-dev-server --config ./webpack.config.js --hot --inline --progress --watch --open",
|
10 |
| - "server:prod": "cross-env NODE_ENV=production webpack-dashboard -- webpack-dev-server --config ./webpack.config.js --port 3000 --host 0.0.0.0 --hot --inline --progress --profile --watch --open --content-base dist/", |
| 11 | + "server:prod": |
| 12 | + "cross-env NODE_ENV=production webpack-dashboard -- webpack-dev-server --config ./webpack.config.js --port 3000 --host 0.0.0.0 --hot --inline --progress --profile --watch --open --content-base dist/", |
11 | 13 | "build": "npm run build:dev",
|
12 | 14 | "build:dev": "webpack --config ./webpack.config.js --progress --profile --color --display-error-details --display-cached",
|
13 |
| - "build:prod": "cross-env NODE_ENV=production webpack --config ./webpack.config.js --progress --profile --color --display-error-details --display-cached --bail", |
| 15 | + "build:prod": |
| 16 | + "cross-env NODE_ENV=production webpack --config ./webpack.config.js --progress --profile --color --display-error-details --display-cached --bail", |
14 | 17 | "clean": "npm cache clear && rimraf -- dist",
|
15 | 18 | "test": "karma start",
|
16 | 19 | "semantic-release": "semantic-release --prepare && semantic-release --publish"
|
|
20 | 23 | "email": "renaudin.yann@gmail.com",
|
21 | 24 | "url": "https://twitter.com/renaudin_yann"
|
22 | 25 | },
|
23 |
| - "files": [ |
24 |
| - "dist" |
25 |
| - ], |
| 26 | + "files": ["dist"], |
26 | 27 | "main": "./dist/morphism.js",
|
27 | 28 | "types": "./dist/morphism.d.ts",
|
28 |
| - "keywords": [ |
29 |
| - "Javascript", |
30 |
| - "Json", |
31 |
| - "Object", |
32 |
| - "Mapper", |
33 |
| - "Data Mapping", |
34 |
| - "Functional Programming" |
35 |
| - ], |
| 29 | + "keywords": ["Javascript", "Json", "Object", "Mapper", "Data Mapping", "Functional Programming"], |
36 | 30 | "devDependencies": {
|
37 | 31 | "@types/jasmine": "^2.5.53",
|
38 | 32 | "awesome-typescript-loader": "^5.0.0",
|
|
0 commit comments