-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
104 lines (104 loc) · 3.87 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
{
"name": "@voxtecnologia/angular-forms",
"version": "2.1.3",
"license": "MIT",
"description": "A Simple Angular Forms Generator",
"main": "./bundles/angular-forms.umd.js",
"module": "./index.js",
"typings": "./index.d.ts",
"scripts": {
"start": "concurrently --raw \"webpack-dev-server --open\" \"npm run test:watch\"",
"build:demo": "webpack -p",
"build:umd": "webpack --config webpack.config.umd.ts",
"build:ngc": "ngc -p tsconfig-ngc.json",
"build:dist": "npm run build:umd && npm run build:ngc && npm run copyfiles && npm run rename-package",
"build:clean": "del-cli dist",
"test": "karma start --single-run && npm run build:dist && npm run build:clean",
"test-ci": "karma start --single-run --browsers PhantomJS",
"test:watch": "karma start --auto-watch",
"compodoc": "compodoc -p tsconfig-compodoc.json -d docs --disableGraph --disableCoverage --disablePrivateOrInternalSupport",
"gh-pages": "git checkout gh-pages && git merge master --no-edit --no-ff && npm run build:demo && npm run compodoc && git add . && git commit -m \"chore: build demo and docs\" && git push && git checkout master",
"copyfiles": "cpy assets/**/*.css LICENSE README.md CHANGELOG.md dist",
"rename-package": "cpy package-lib.json dist --rename=package.json",
"prerelease": "npm test",
"release:git": "git add package.json && git commit -m \"chore: bump version number\" && standard-version --first-release && git push --follow-tags origin master",
"release:npm": "npm run build:dist && npm publish dist",
"release": "npm run release:git && npm run release:npm",
"postrelease": "npm run build:clean && npm run gh-pages",
"codecov": "cat coverage/lcov.info | codecov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vox-tecnologia/angular-forms.git"
},
"keywords": [
"angular",
"forms"
],
"author": "Vox Tecnologia",
"bugs": {
"url": "https://github.com/vox-tecnologia/angular-forms/issues"
},
"homepage": "https://github.com/vox-tecnologia/angular-forms#readme",
"dependencies": {
"@angular/common": "^5.2.6",
"@angular/core": "^5.2.6",
"@angular/forms": "^5.2.6",
"@fagnerlima/ng-mask": "^2.2.1",
"@ngx-translate/core": "^9.1.1",
"@types/node": "^8.0.24",
"rxjs": "^5.5.10"
},
"devDependencies": {
"@angular/compiler": "^5.2.6",
"@angular/compiler-cli": "^5.2.6",
"@angular/language-service": "^5.2.6",
"@angular/platform-browser": "^5.2.6",
"@angular/platform-browser-dynamic": "^5.2.6",
"@compodoc/compodoc": "^1.0.1",
"@types/chai": "^4.0.0",
"@types/html-webpack-plugin": "^2.11.2",
"@types/mocha": "^2.2.41",
"@types/sinon": "^2.1.2",
"@types/sinon-chai": "^2.7.26",
"@types/webpack": "^2.2.8",
"chai": "^4.0.0",
"codecov": "^2.1.0",
"codelyzer": "^3.0.0",
"concurrently": "^3.0.0",
"core-js": "^2.4.1",
"cpy-cli": "^1.0.1",
"cz-conventional-changelog": "^2.0.0",
"del-cli": "^1.0.0",
"fork-ts-checker-webpack-plugin": "^0.2.2",
"html-webpack-plugin": "^2.28.0",
"husky": "^0.13.0",
"istanbul-instrumenter-loader": "^2.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-phantomjs-launcher": "^1.0.4",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.1",
"mocha": "^3.3.0",
"sinon": "^2.0.0",
"sinon-chai": "^2.8.0",
"standard-version": "^4.0.0",
"ts-loader": "2.3.7",
"ts-node": "^3.0.0",
"tslint": "^5.1.0",
"tslint-loader": "^3.5.3",
"typescript": "~2.6.2",
"webpack": "^2.2.0",
"webpack-angular-externals": "^1.0.0",
"webpack-dev-server": "^2.2.0",
"webpack-rxjs-externals": "^1.0.0",
"zone.js": "^0.8.14"
},
"directories": {
"doc": "docs",
"test": "test"
}
}