forked from aurelia/validation
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
enhance(ValidationParser): handle validate props that subpropeties of…
… an object fixes aurelia#283
- Loading branch information
Showing
10 changed files
with
243 additions
and
149 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,129 +1,127 @@ | ||
{ | ||
"name": "aurelia-validation", | ||
"version": "1.0.0-beta.1.0.0", | ||
"description": "Validation for Aurelia applications", | ||
"keywords": [ | ||
"aurelia", | ||
"plugin", | ||
"validation" | ||
], | ||
"homepage": "http://aurelia.io", | ||
"bugs": { | ||
"url": "https://github.com/aurelia/validation/issues" | ||
}, | ||
"license": "MIT", | ||
"author": "Jeremy Danyow <[email protected]> (https:/danyow.net/)", | ||
"main": "dist/commonjs/aurelia-validation.js", | ||
"typings": "dist/commonjs/aurelia-validation.d.ts", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/aurelia/validation" | ||
}, | ||
"scripts": { | ||
"lint": "cross-env tslint --project tsconfig.json", | ||
|
||
"pretest": "cross-env npm run lint", | ||
"test": "cross-env tsc && karma start --single-run", | ||
"test-watch": "concurrently \"./node_modules/.bin/tsc --watch\" \"./node_modules/.bin/karma start\"", | ||
|
||
"prebuild:amd": "cross-env rimraf dist/amd", | ||
"build:amd": "cross-env tsc --project tsconfig.build.json --outDir dist/amd --module amd", | ||
"postbuild:amd": "cross-env copyfiles --up 1 src/**/*.html src/**/*.css dist/amd", | ||
|
||
"prebuild:commonjs": "cross-env rimraf dist/commonjs", | ||
"build:commonjs": "cross-env tsc --project tsconfig.build.json --outDir dist/commonjs --module commonjs", | ||
"postbuild:commonjs": "cross-env copyfiles --up 1 src/**/*.html src/**/*.css dist/commonjs", | ||
|
||
"prebuild:es2015": "cross-env rimraf dist/es2015", | ||
"build:es2015": "cross-env tsc --project tsconfig.build.json --outDir dist/es2015 --module es2015 --target es2015", | ||
"postbuild:es2015": "cross-env copyfiles --up 1 src/**/*.html src/**/*.css dist/es2015", | ||
|
||
"prebuild:native-modules": "cross-env rimraf dist/native-modules", | ||
"build:native-modules": "cross-env tsc --project tsconfig.build.json --outDir dist/native-modules --module es2015", | ||
"postbuild:native-modules": "cross-env copyfiles --up 1 src/**/*.html src/**/*.css dist/native-modules", | ||
|
||
"prebuild:system": "cross-env rimraf dist/system", | ||
"build:system": "cross-env tsc --project tsconfig.build.json --outDir dist/system --module system", | ||
"postbuild:system": "cross-env copyfiles --up 1 src/**/*.html src/**/*.css dist/system", | ||
|
||
"prebuild": "cross-env rimraf dist", | ||
"build": "concurrently \"npm run build:amd\" \"npm run build:commonjs\" \"npm run build:es2015\" \"npm run build:native-modules\" \"npm run build:system\"", | ||
"postbuild": "npm run build:doc", | ||
|
||
"prebuild:doc": "cross-env rimraf doc/api.json && rimraf dist/doc-temp && tsc --project tsconfig.build.json --outFile dist/doc-temp/index.js && node doc/shape-defs", | ||
"build:doc": "cross-env typedoc --json doc/api.json --excludeExternals --includeDeclarations --mode modules --target ES6 --name aurelia-ux-docs --ignoreCompilerErrors --tsconfig doc/tsconfig.json dist/doc-temp/", | ||
"postbuild:doc": "cross-env node doc/shape-doc && rimraf dist/doc-temp" | ||
}, | ||
"jspm": { | ||
"registry": "npm", | ||
"jspmPackage": true, | ||
"main": "aurelia-validation", | ||
"format": "amd", | ||
"directories": { | ||
"dist": "dist/amd" | ||
}, | ||
"peerDependencies": { | ||
"aurelia-binding": "^1.0.4", | ||
"aurelia-dependency-injection": "^1.0.0", | ||
"aurelia-logging": "^1.0.0", | ||
"aurelia-pal": "^1.0.0", | ||
"aurelia-task-queue": "^1.0.0", | ||
"aurelia-templating": "^1.1.0" | ||
}, | ||
"dependencies": { | ||
"aurelia-binding": "^1.0.4", | ||
"aurelia-dependency-injection": "^1.0.0", | ||
"aurelia-logging": "^1.0.0", | ||
"aurelia-pal": "^1.0.0", | ||
"aurelia-task-queue": "^1.0.0", | ||
"aurelia-templating": "^1.1.0" | ||
}, | ||
"devDependencies": {} | ||
}, | ||
"dependencies": { | ||
"aurelia-binding": "^1.0.4", | ||
"aurelia-dependency-injection": "^1.0.0", | ||
"aurelia-logging": "^1.0.0", | ||
"aurelia-pal": "^1.0.0", | ||
"aurelia-task-queue": "^1.0.0", | ||
"aurelia-templating": "^1.1.0" | ||
}, | ||
"devDependencies": { | ||
"aurelia-bootstrapper": "^1.0.0", | ||
"aurelia-pal-browser": "^1.0.0", | ||
"aurelia-polyfills": "^1.1.0", | ||
"aurelia-testing": "^1.0.0-beta.2.0.0", | ||
"concurrently": "^2.2.0", | ||
"copyfiles": "^1.0.0", | ||
"cross-env": "^2.0.1", | ||
"jasmine-core": "^2.4.1", | ||
"karma": "^1.2.0", | ||
"karma-chrome-launcher": "^2.0.0", | ||
"karma-ie-launcher": "^1.0.0", | ||
"karma-jasmine": "^1.0.2", | ||
"karma-requirejs": "^1.0.0", | ||
"requirejs": "^2.2.0", | ||
"requirejs-text": "^2.0.12", | ||
"rimraf": "^2.5.4", | ||
"tslint": "^3.15.1", | ||
"typedoc": "^0.5.0", | ||
"typescript": "next" | ||
}, | ||
"aurelia": { | ||
"build": { | ||
"resources": [ | ||
"validate-binding-behavior", | ||
"validation-errors-custom-attribute", | ||
"validation-renderer-custom-attribute" | ||
] | ||
}, | ||
"documentation": { | ||
"articles": [ | ||
{ | ||
"title": "Validation: Basics", | ||
"href": "doc/article/en-US/validation-basics.md" | ||
} | ||
] | ||
} | ||
} | ||
} | ||
{ | ||
"name": "aurelia-validation", | ||
"version": "1.0.0-beta.1.0.0", | ||
"description": "Validation for Aurelia applications", | ||
"keywords": [ | ||
"aurelia", | ||
"plugin", | ||
"validation" | ||
], | ||
"homepage": "http://aurelia.io", | ||
"bugs": { | ||
"url": "https://github.com/aurelia/validation/issues" | ||
}, | ||
"license": "MIT", | ||
"author": "Jeremy Danyow <[email protected]> (https:/danyow.net/)", | ||
"main": "dist/commonjs/aurelia-validation.js", | ||
"typings": "dist/commonjs/aurelia-validation.d.ts", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/aurelia/validation" | ||
}, | ||
"scripts": { | ||
"lint": "cross-env tslint --project tsconfig.json", | ||
"pretest": "cross-env npm run lint", | ||
"test": "cross-env tsc && karma start --single-run", | ||
"test-watch": "concurrently \"./node_modules/.bin/tsc --watch\" \"./node_modules/.bin/karma start\"", | ||
"prebuild:amd": "cross-env rimraf dist/amd", | ||
"build:amd": "cross-env tsc --project tsconfig.build.json --outDir dist/amd --module amd", | ||
"postbuild:amd": "cross-env copyfiles --up 1 src/**/*.html src/**/*.css dist/amd", | ||
"prebuild:commonjs": "cross-env rimraf dist/commonjs", | ||
"build:commonjs": "cross-env tsc --project tsconfig.build.json --outDir dist/commonjs --module commonjs", | ||
"postbuild:commonjs": "cross-env copyfiles --up 1 src/**/*.html src/**/*.css dist/commonjs", | ||
"prebuild:es2015": "cross-env rimraf dist/es2015", | ||
"build:es2015": "cross-env tsc --project tsconfig.build.json --outDir dist/es2015 --module es2015 --target es2015", | ||
"postbuild:es2015": "cross-env copyfiles --up 1 src/**/*.html src/**/*.css dist/es2015", | ||
"prebuild:native-modules": "cross-env rimraf dist/native-modules", | ||
"build:native-modules": "cross-env tsc --project tsconfig.build.json --outDir dist/native-modules --module es2015", | ||
"postbuild:native-modules": "cross-env copyfiles --up 1 src/**/*.html src/**/*.css dist/native-modules", | ||
"prebuild:system": "cross-env rimraf dist/system", | ||
"build:system": "cross-env tsc --project tsconfig.build.json --outDir dist/system --module system", | ||
"postbuild:system": "cross-env copyfiles --up 1 src/**/*.html src/**/*.css dist/system", | ||
"prebuild": "cross-env rimraf dist", | ||
"build": "concurrently \"npm run build:amd\" \"npm run build:commonjs\" \"npm run build:es2015\" \"npm run build:native-modules\" \"npm run build:system\"", | ||
"postbuild": "npm run build:doc", | ||
"prebuild:doc": "cross-env rimraf doc/api.json && rimraf dist/doc-temp && tsc --project tsconfig.build.json --outFile dist/doc-temp/index.js && node doc/shape-defs", | ||
"build:doc": "cross-env typedoc --json doc/api.json --excludeExternals --includeDeclarations --mode modules --target ES6 --name aurelia-ux-docs --ignoreCompilerErrors --tsconfig doc/tsconfig.json dist/doc-temp/", | ||
"postbuild:doc": "cross-env node doc/shape-doc && rimraf dist/doc-temp" | ||
}, | ||
"jspm": { | ||
"registry": "npm", | ||
"jspmPackage": true, | ||
"main": "aurelia-validation", | ||
"format": "amd", | ||
"directories": { | ||
"dist": "dist/amd" | ||
}, | ||
"peerDependencies": { | ||
"aurelia-binding": "^1.0.4", | ||
"aurelia-dependency-injection": "^1.0.0", | ||
"aurelia-logging": "^1.0.0", | ||
"aurelia-pal": "^1.0.0", | ||
"aurelia-task-queue": "^1.0.0", | ||
"aurelia-templating": "^1.1.0" | ||
}, | ||
"dependencies": { | ||
"aurelia-binding": "^1.0.4", | ||
"aurelia-dependency-injection": "^1.0.0", | ||
"aurelia-logging": "^1.0.0", | ||
"aurelia-pal": "^1.0.0", | ||
"aurelia-task-queue": "^1.0.0", | ||
"aurelia-templating": "^1.1.0" | ||
}, | ||
"devDependencies": {} | ||
}, | ||
"dependencies": { | ||
"aurelia-binding": "^1.1.0", | ||
"aurelia-dependency-injection": "^1.2.1", | ||
"aurelia-logging": "^1.2.0", | ||
"aurelia-pal": "^1.2.0", | ||
"aurelia-pal-browser": "^1.1.0", | ||
"aurelia-task-queue": "^1.0.0", | ||
"aurelia-templating": "^1.1.4", | ||
"aurelia-testing": "^1.0.0-beta.2.0.1", | ||
"copyfiles": "^1.0.0", | ||
"karma-jasmine": "^1.1.0", | ||
"requirejs-text": "^2.0.15", | ||
"typescript": "^2.2.0-dev.20161219" | ||
}, | ||
"devDependencies": { | ||
"aurelia-bootstrapper": "^1.0.0", | ||
"aurelia-pal-browser": "^1.0.0", | ||
"aurelia-polyfills": "^1.1.0", | ||
"aurelia-testing": "^1.0.0-beta.2.0.0", | ||
"concurrently": "^2.2.0", | ||
"copyfiles": "^1.0.0", | ||
"cross-env": "^2.0.1", | ||
"jasmine-core": "^2.4.1", | ||
"karma": "^1.2.0", | ||
"karma-chrome-launcher": "^2.0.0", | ||
"karma-ie-launcher": "^1.0.0", | ||
"karma-jasmine": "^1.0.2", | ||
"karma-requirejs": "^1.0.0", | ||
"requirejs": "^2.2.0", | ||
"requirejs-text": "^2.0.12", | ||
"rimraf": "^2.5.4", | ||
"tslint": "^3.15.1", | ||
"typedoc": "^0.5.0", | ||
"typescript": "next" | ||
}, | ||
"aurelia": { | ||
"build": { | ||
"resources": [ | ||
"validate-binding-behavior", | ||
"validation-errors-custom-attribute", | ||
"validation-renderer-custom-attribute" | ||
] | ||
}, | ||
"documentation": { | ||
"articles": [ | ||
{ | ||
"title": "Validation: Basics", | ||
"href": "doc/article/en-US/validation-basics.md" | ||
} | ||
] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.