forked from Romanchuk/angular-validation-message
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 3.41 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
{
"name": "angular-validation-message",
"version": "1.2.1",
"ngPackage": {
"lib": {
"entryFile": "src/index.ts"
}
},
"author": {
"name": "Sergey Romanchuk"
},
"homepage": "https://github.com/Romanchuk/angular-validation-message#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Romanchuk/angular-validation-message.git"
},
"license": "MIT",
"description": "angular directive that inserts @angular/forms validation message right after your validating control",
"engines": {
"node": "4.4.4"
},
"scripts": {
"karma": "npx karma",
"rimraf": "npx rimraf",
"cpy": "npx cpy",
"prebuild": "npm run clean:build",
"build": "npx ng-packagr -p package.json",
"copy:assets": "npm run cpy -- CHANGELOG.md dist",
"conventional-changelog": "conventional-changelog",
"changelog": "npm run conventional-changelog -- -p angular -i CHANGELOG.md -s",
"changelog:add": "git add --force CHANGELOG.md package.json",
"changelog:commit": "git commit -m \"Updated CHANGELOG.md\"",
"version": "npx conventional-changelog -p angular -i CHANGELOG.md -s -r && npm run build && npm run copy:assets && npm run changelog:add && npm run changelog:commit",
"clean:build": "npm run rimraf -- dist build",
"clean": "npm run clean:build && npm run clean:tests",
"clean:tests": "npm run rimraf -- coverage && npm run rimraf -- \"tests/**/*.+(js|js.map|d.ts|metadata.json)\" ",
"clean:compile": "npm run rimraf -- dist build",
"lint": "npm run lint-ts && npm run lint-js && npm run lint-css",
"lint-css": "stylelint './src/**/*.css'",
"lint-ts": "tslint './src/**/*.ts'",
"lint-js": "eslint '**/*.js' --ignore-path .gitignore",
"test": "npm run clean:tests && karma start karma.conf.js",
"test:watch": "npm run clean:tests && karma start karma.conf.debug.js",
"release": "npx np --contents=dist --yolo"
},
"peerDependencies": {
"@angular/core": ">=6.0.0 <9.0.0",
"@angular/forms": ">=6.0.0 <9.0.0"
},
"devDependencies": {
"@angular/compiler": "~8.0.0",
"@angular/compiler-cli": "~8.0.0",
"@angular/common": "~8.0.0",
"@angular/core": "~8.0.0",
"@angular/forms": "~8.0.0",
"@angular/platform-browser": "~8.0.0",
"@types/chai": "^4.1.7",
"@types/i18next": "^12.1.0",
"@types/jasmine": "^3.3.13",
"@types/sinon": "^7.0.12",
"chai": "^4.2.0",
"conventional-changelog-cli": "^2.0.21",
"conventional-github-releaser": "^3.1.2",
"coveralls": "^3.0.3",
"codelyzer": "^5.0.1",
"rimraf": "^2.6.3",
"sinon": "^7.3.2",
"jasmine": "^3.4.0",
"jasmine-core": "^3.4.0",
"karma": "^4.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.2",
"karma-jasmine": "^2.0.1",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "^0.0.32",
"ng-packagr": "^5.2.0",
"np": "^5.0.2",
"tslint": "^5.16.0",
"typedoc": "^0.14.2",
"typescript": "3.4.5",
"zone.js": "^0.9.1",
"cpy-cli": "^2.0.0",
"tsickle": "^0.35.0",
"tslib": "^1.9.3"
}
}