forked from zztop101/ng-password-helper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.17 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
{
"name": "ng-password-helper",
"version": "1.0.4",
"repository": {
"type": "git",
"url": "https://github.com/zztop101/ng-password-helper"
},
"keywords": [
"angular",
"password",
"helper",
"validator"
],
"author": {
"name": "Terry Roberts",
"email": "[email protected]"
},
"license": "MIT",
"scripts": {
"tslint": "tslint -c tslint.json 'src/**/*.ts'",
"commit": "git-cz",
"clean:dist": "rimraf dist compiled",
"publish-npm": "npm publish",
"build": "npm run clean:dist && npm run build-aot && npm-run-all --parallel build:*",
"build-aot": "ngc -p ./tsconfig-aot.json",
"build:umd": "webpack --output-filename index.umd.js",
"build:umd.min": "webpack --output-filename index.umd.min.js -p",
"dev:build": "webpack --output-filename index.umd.js --progress --profile --bail",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"private": false,
"engines": {
"node": ">= 4.2.1"
},
"dependencies": {
"@angular/core": "^2.4.1",
"core-js": "^2.4.1",
"rxjs": "^5.0.1",
"zone.js": "~0.7.2",
"font-awesome": "^4.6.3"
},
"devDependencies": {
"@angular/common": "2.4.1",
"@angular/compiler": "2.4.1",
"@angular/compiler-cli": "2.4.1",
"@angular/forms": "2.4.1",
"@angular/platform-server": "2.4.1",
"@ngtools/webpack": "1.2.1",
"@types/node": "6.0.48",
"angular2-template-loader": "^0.6.0",
"awesome-typescript-loader": "3.0.0-beta.17",
"commitizen": "2.9.2",
"cz-conventional-changelog": "^1.2.0",
"es6-promise": "4.0.5",
"es6-promise-loader": "^1.0.2",
"es6-shim": "^0.35.2",
"es7-reflect-metadata": "^1.6.0",
"npm-run-all": "^3.1.2",
"raw-loader": "^0.5.1",
"rimraf": "2.5.4",
"semantic-release": "6.3.2",
"ts-loader": "1.3.3",
"ts-node": "1.7.2",
"typescript": "2.0.10",
"webpack": "2.1.0-beta.28",
"webpack-merge": "2.0.0"
},
"files": [
"LICENSE",
"package.json",
"README.md",
"tsconfig*.json",
"index.*",
"src",
"dist"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}