-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 895 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 895 Bytes
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
{
"name": "@wufe/mapper",
"version": "0.5.0",
"description": "Object to object mapper in Typescript",
"main": "index.js",
"repository": "https://github.com/Wufe/mapper.git",
"author": "Simone Bembi <simone.bembi@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.1.1",
"@types/mocha": "^2.2.46",
"chai": "^4.1.2",
"mocha": "^5.0.0",
"reflect-metadata": "^0.1.12",
"ts-loader": "^3.2.0",
"ts-node": "^4.1.0",
"tsconfig-paths": "^3.1.1",
"typescript": "^2.6.2",
"uglifyjs-webpack-plugin": "^1.1.8",
"webpack": "^3.10.0"
},
"scripts": {
"build": "webpack --env.development",
"build:prod": "webpack --env.production",
"test": "mocha -r ts-node/register -r tsconfig-paths/register src/tests/**/*.test.ts",
"start": "ts-node -r tsconfig-paths/register index.ts"
},
"types": "./types/index.d.ts"
}