-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
98 lines (98 loc) · 3.13 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
{
"name": "@kaiu/serializer",
"version": "1.4.0",
"description": "Simple JSON deserializer for typescipt applications",
"main": "./bundles/serializer.umd.js",
"types": "./index.d.ts",
"scripts": {
"build:umd": "webpack --config webpack.config.umd.ts",
"build:dist": "npm run build:umd && npm run build:ngc",
"build:ngc": "ngc -p tsconfig-ngc.json",
"build:clean": "del-cli dist",
"test": "karma start --single-run && npm run build:dist && npm run build:clean",
"test:watch": "karma start --auto-watch",
"commit": "git-cz",
"copyfiles": "copyfiles package.json LICENSE README.md CHANGELOG.md dist",
"prerelease": "npm test",
"release:git": "standard-version && git push --follow-tags origin master",
"release:npm": "npm run build:dist && npm run copyfiles && npm publish dist",
"release": "npm run release:git && npm run release:npm",
"postrelease": "npm run build:clean",
"commitmsg": "validate-commit-msg",
"codecov": "cat coverage/lcov.info | codecov",
"docs:generate": "npm run docs:clean && typedoc --out docs --excludePrivate --mode file --exclude \"**/*+(index|spec|entry).ts\" ./src",
"docs:clean": "del-cli docs/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kaiu-lab/serializer.git"
},
"keywords": [
"typescript",
"serializer"
],
"contributors": [
{
"name": "Flavien Normand",
"email": "[email protected]",
"url": "http://www.flavien-normand.fr"
},
{
"name": "Noémi Salaün",
"email": "[email protected]",
"url": "https://github.com/noemi-salaun"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/kaiu-lab/serializer/issues"
},
"homepage": "https://github.com/kaiu-lab/serializer#readme",
"devDependencies": {
"@angular/compiler": "^5.2.5",
"@angular/compiler-cli": "^5.2.5",
"@angular/core": "^5.2.5",
"@types/chai": "^4.0.0",
"@types/mocha": "^2.2.41",
"@types/node": "^8.0.10",
"@types/sinon": "^4.1.3",
"@types/sinon-chai": "^2.7.26",
"@types/webpack": "^3.0.4",
"chai": "^4.0.0",
"codecov": "^3.0.0",
"commitizen": "^2.8.1",
"copyfiles": "^1.2.0",
"cz-conventional-changelog": "^2.0.0",
"del-cli": "^1.0.0",
"fork-ts-checker-webpack-plugin": "^0.3.0",
"husky": "^0.14.3",
"istanbul-instrumenter-loader": "^3.0.0",
"karma": "^1.4.1",
"karma-chrome-launcher": "^2.1.1",
"karma-coverage-istanbul-reporter": "^1.0.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.3",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.1",
"mocha": "^5.0.1",
"reflect-metadata": "^0.1.10",
"rxjs": "^5.5.0",
"sinon": "^4.3.0",
"sinon-chai": "^2.8.0",
"standard-version": "^4.0.0",
"ts-loader": "2.3.2",
"ts-node": "^4.1.0",
"tslint": "^5.1.0",
"tslint-loader": "^3.5.3",
"typedoc": "^0.10.0",
"typescript": "^2.4.1",
"uglifyjs-webpack-plugin": "^1.2.0",
"validate-commit-msg": "^2.8.0",
"webpack": "^3.2.0"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
}
}