forked from Sir-J/js-ts-mapper
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
78 lines (78 loc) · 2.8 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
{
"name": "js-ts-mapper",
"version": "1.2.0",
"description": "Mapping json object to Typescript class",
"main": "js-ts-mapper.js",
"scripts": {
"compile:dev": "npx webpack --mode=development --devtool cheap-module-eval-source-map && npx rimraf dist/src",
"compile": "npx webpack --mode=production && npx rimraf dist/src",
"test": "npx rimraf coverage && npx karma start",
"test:watch": "npx rimraf coverage && npx karma start --watch=true --singleRun=false",
"clean": "npx rimraf dist",
"copy:assets": "npx cpy -- package.json README.md CHANGELOG.md dist",
"conventional-changelog": "conventional-changelog",
"add:changelog": "git add --force CHANGELOG.md package.json",
"commit:changelog": "git commit -m \"Updated CHANGELOG.md\"",
"push:changelog": "git push",
"preversion": "npm run clean && npm run compile && npm run test",
"version": "npx conventional-changelog -p angular -i CHANGELOG.md -s -r && npm run copy:assets && npm run add:changelog && npm run commit:changelog",
"postversion": "npm run push:changelog && npm publish dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LCGroupIT/js-ts-mapper.git"
},
"keywords": [
"Mapping",
"Json toTypescript",
"Json to class"
],
"contributors": [
{
"name": "Sergey Rogachev"
},
{
"name": "Alexey Sorokin",
"email": "[email protected]"
}
],
"license": "ISC",
"bugs": {
"url": "https://github.com/LCGroupIT/issues"
},
"homepage": "https://github.com/LCGroupIT/issues#readme",
"dependencies": {
"reflect-metadata": "^0.1.12"
},
"module": "js-ts-mapper.js",
"es2015": "js-ts-mapper.js",
"typings": "index.d.ts",
"devDependencies": {
"@types/jasmine": "^2.8.8",
"@types/webpack": "^4.4.11",
"@types/webpack-env": "^1.13.6",
"conventional-changelog-cli": "^2.0.11",
"cpy-cli": "^2.0.0",
"es6-shim": "^0.35.3",
"istanbul-instrumenter-loader": "^3.0.1",
"jasmine": "^3.1.0",
"jasmine-core": "^3.1.0",
"karma": "^2.0.5",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.2",
"karma-jasmine": "^1.1.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "^0.0.32",
"karma-webpack": "^3.0.0",
"moment": "^2.22.2",
"ts-helpers": "^1.1.2",
"ts-loader": "^4.4.2",
"ts-loader-decleration": "^0.10.4",
"tsconfig-paths-webpack-plugin": "^3.2.0",
"tslint": "~5.9.1",
"typedoc": "^0.11.1",
"typescript": "^3.0.1",
"webpack": "4.16.3",
"webpack-cli": "^3.1.0"
}
}