-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
114 lines (114 loc) · 3.21 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "morphism",
"version": "1.0.0",
"description": "Type-safe object transformer for JavaScript, TypeScript & Node.js. ",
"homepage": "https://github.com/nobrainr/morphism",
"main": "./dist/morphism.js",
"types": "./dist/types/morphism.d.ts",
"scripts": {
"build": "run-p build:js build:types",
"start": "run-p watch:*",
"build:js": "TS_NODE_PROJECT=\"tsconfig.webpack.json\" webpack --mode=production",
"watch:js": "yarn run build:js -w --display \"errors-only\"",
"build:types": "tsc -p tsconfig.prod.json --emitDeclarationOnly",
"watch:types": "yarn run build:types -w >/dev/null",
"test": "jest",
"test:types": "tsc --emitDeclarationOnly",
"test:coverage": "yarn run test --coverage",
"semantic-release": "semantic-release",
"docs": "typedoc",
"docs:deploy": "now ./docs/typedoc -A ../../now.json --public --team $TEAM_NAME --token $NOW_TOKEN && now alias --team $TEAM_NAME --token $NOW_TOKEN",
"analyze-bundle:dev": "WEBPACK_ANALYZE=true TS_NODE_PROJECT=\"tsconfig.webpack.json\" webpack",
"analyze-bundle:prod": "WEBPACK_ANALYZE=true TS_NODE_PROJECT=\"tsconfig.webpack.json\" webpack --mode=production"
},
"release": {
"branches": [
"master",
"next",
{
"name": "beta",
"prerelease": true
}
]
},
"author": {
"name": "Yann Renaudin",
"email": "[email protected]",
"url": "https://twitter.com/renaudin_yann"
},
"files": [
"dist"
],
"keywords": [
"data",
"functional",
"parser",
"typescript",
"object",
"array",
"flow",
"mapper",
"automapper",
"morphism",
"fp",
"js",
"javascript"
],
"dependencies": {},
"devDependencies": {
"@babel/core": "7.8.7",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-decorators": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.8.3",
"@babel/preset-env": "7.8.7",
"@babel/preset-typescript": "^7.8.3",
"@hapi/joi": "^16.1.7",
"@types/hapi__joi": "^16.0.1",
"@types/jest": "25.1.4",
"@types/node": "^13.1.0",
"@types/validator": "^10.11.3",
"@types/webpack": "^4.4.27",
"@types/webpack-bundle-analyzer": "^2.13.3",
"babel-loader": "^8.0.5",
"fork-ts-checker-webpack-plugin": "^4.0.1",
"jest": "24.7.1",
"lint-staged": "^10.0.3",
"nodemon": "^2.0.0",
"nodemon-webpack-plugin": "^4.2.2",
"now": "^17.0.0",
"npm-run-all": "^4.1.5",
"prettier": "1.19.1",
"semantic-release": "^17.0.0",
"source-map-loader": "^0.2.4",
"ts-node": "^8.0.3",
"tslint": "^5.15.0",
"tslint-loader": "^3.6.0",
"typedoc": "^0.16.0",
"typedoc-plugin-external-module-name": "^3.0.0",
"typedoc-plugin-internal-external": "^2.0.1",
"typescript": "^3.7.2",
"validator": "^11.1.0",
"webpack": "4.42.0",
"webpack-bundle-analyzer": "^3.5.2",
"webpack-cli": "^3.3.0"
},
"eslintConfig": {
"extends": "xo-space",
"env": {
"mocha": true
}
},
"repository": "nobrainr/morphism",
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,js,css,json,md}": [
"prettier --write",
"git add"
]
}
}