add watching change files and recompile

This commit is contained in:
Eugenio Romano
2016-06-06 15:36:41 +01:00
parent 503217a9c9
commit 6d507ef527
6 changed files with 518 additions and 490 deletions

View File

@@ -1,94 +1,100 @@
{ {
"name": "ng2-alfresco-datatable", "name": "ng2-alfresco-datatable",
"description": "Alfresco Angular2 DataTable Component", "description": "Alfresco Angular2 DataTable Component",
"version": "0.1.7", "version": "0.1.7",
"author": "Alfresco Software, Ltd.", "author": "Alfresco Software, Ltd.",
"scripts": { "scripts": {
"typings": "typings install", "typings": "typings install",
"build": "npm run tslint && typings install && rm -rf dist && tsc && npm run copytemplates && license-check", "server": "wsrv -o -p 9875",
"tslint": "npm run tslint-src && npm run tslint-root", "build": "npm run tslint && typings install && rm -rf dist && tsc && npm run copytemplates && license-check",
"tslint-src": "tslint -c tslint.json src/**/*.ts, src/**/*.spec.ts ", "build:w": "npm run tslint && typings install && rm -rf dist && npm run watch-task",
"tslint-root": "tslint -c tslint.json *.ts", "watch-task": "concurrently \"npm run tsc:w\" \"npm run copytemplates:w\" \"license-check\"",
"copytemplates": "npm run copy-html && npm run copy-css && npm run copy-i18n", "tslint": "npm run tslint-src && npm run tslint-root",
"copy-html": "copyfiles './src/**/*.html' dist", "tslint-src": "tslint -c tslint.json src/**/*.ts, src/**/*.spec.ts ",
"copy-css": "copyfiles './src/**/*.css' dist", "tslint-root": "tslint -c tslint.json *.ts",
"copy-i18n": "copyfiles './i18n/**/*.json' dist", "copytemplates": "npm run copy-html-css && npm run copy-i18n",
"licensecheck": "license-check", "copytemplates:w": "concurrently \"npm run copy-html-css:w\" \"npm run copy-i18n:w\"",
"tsc": "tsc", "copy-html-css": "cpx './src/**/*.{html,css}' dist/src",
"pretest": "npm run build", "copy-html-css:w": "cpx './src/**/*.{html,css}' dist/src -w",
"test": "karma start karma.conf.js --reporters mocha,coverage --single-run", "copy-i18n": "copyfiles './i18n/**/*.json' dist/i18n",
"test-browser": "karma start karma.conf.js --reporters kjhtml ", "copy-i18n:w": "cpx './i18n/**/*.json' dist/i18n -w",
"posttest": "node_modules/.bin/remap-istanbul -i coverage/report/coverage-final.json -o coverage/report -t html", "tsc": "tsc",
"coverage": "npm run test && wsrv -o -p 9875 ./coverage/report", "tsc:w": "tsc -w",
"prepublish": "npm run build" "pretest": "npm run build",
}, "test": "karma start karma.conf.js --reporters mocha,coverage --single-run",
"repository": { "test-browser": "concurrently \"karma start karma.conf.js --reporters kjhtml\" \"npm run watch-task\"",
"type": "git", "posttest": "node_modules/.bin/remap-istanbul -i coverage/report/coverage-final.json -o coverage/report -t html",
"url": "https://github.com/Alfresco/dev-platform-webcomponents.git" "coverage": "npm run test && wsrv -o -p 9875 ./coverage/report",
}, "prepublish": "npm run build"
"bugs": { },
"url": "https://github.com/Alfresco/dev-platform-webcomponents/issues" "repository": {
}, "type": "git",
"license": "Apache-2.0", "url": "https://github.com/Alfresco/dev-platform-webcomponents.git"
"contributors": [ },
{ "bugs": {
"name": "Denys Vuika", "url": "https://github.com/Alfresco/dev-platform-webcomponents/issues"
"email": "denis.vuyka@gmail.com" },
} "license": "Apache-2.0",
], "contributors": [
"keywords": [ {
"ng2", "name": "Denys Vuika",
"angular", "email": "denis.vuyka@gmail.com"
"angular2", }
"alfresco"
],
"dependencies": {
"angular2": "2.0.0-beta.15",
"systemjs": "0.19.26",
"es6-shim": "^0.35.0",
"reflect-metadata": "0.1.2",
"rxjs": "5.0.0-beta.2",
"zone.js": "^0.6.12",
"es6-module-loader": "^0.17.8"
},
"peerDependencies": {
"material-design-icons": "^2.2.3",
"material-design-lite": "^1.1.3"
},
"devDependencies": {
"copyfiles": "^0.2.1",
"coveralls": "^2.11.9",
"jasmine-core": "2.4.1",
"karma": "~0.13.22",
"karma-chrome-launcher": "~1.0.1",
"karma-coverage": "^1.0.0",
"karma-jasmine": "~1.0.2",
"karma-jasmine-html-reporter": "^0.2.0",
"karma-mocha-reporter": "^2.0.3",
"license-check": "^1.0.4",
"remap-istanbul": "^0.6.3",
"traceur": "^0.0.91",
"tslint": "^3.8.1",
"typescript": "^1.8.10",
"typings": "^0.7.12",
"wsrv": "^0.1.0"
},
"license-check-config": {
"src": [
"**/*.js",
"**/*.ts",
"!/**/coverage/**/*",
"!/**/demo/**/*",
"!/**/node_modules/**/*",
"!/**/typings/**/*",
"!*.js"
], ],
"path": "assets/license_header.txt", "keywords": [
"blocking": false, "ng2",
"logInfo": false, "angular",
"logError": true "angular2",
}, "alfresco"
"publishConfig": { ],
"registry": "http://devproducts.alfresco.me:4873/" "dependencies": {
} "angular2": "2.0.0-beta.15",
"systemjs": "0.19.26",
"es6-shim": "^0.35.0",
"reflect-metadata": "0.1.2",
"rxjs": "5.0.0-beta.2",
"zone.js": "^0.6.12",
"es6-module-loader": "^0.17.8"
},
"peerDependencies": {
"material-design-icons": "^2.2.3",
"material-design-lite": "^1.1.3"
},
"devDependencies": {
"concurrently": "^2.1.0",
"coveralls": "^2.11.9",
"cpx": "^1.3.1",
"jasmine-core": "2.4.1",
"karma": "~0.13.22",
"karma-chrome-launcher": "~1.0.1",
"karma-coverage": "^1.0.0",
"karma-jasmine": "~1.0.2",
"karma-jasmine-html-reporter": "^0.2.0",
"karma-mocha-reporter": "^2.0.3",
"license-check": "^1.0.4",
"remap-istanbul": "^0.6.3",
"traceur": "^0.0.91",
"tslint": "^3.8.1",
"typescript": "^1.8.10",
"typings": "^0.7.12",
"wsrv": "^0.1.0"
},
"license-check-config": {
"src": [
"**/*.js",
"**/*.ts",
"!/**/coverage/**/*",
"!/**/demo/**/*",
"!/**/node_modules/**/*",
"!/**/typings/**/*",
"!*.js"
],
"path": "assets/license_header.txt",
"blocking": false,
"logInfo": false,
"logError": true
},
"publishConfig": {
"registry": "http://devproducts.alfresco.me:4873/"
}
} }

View File

@@ -1,98 +1,102 @@
{ {
"name": "ng2-alfresco-documentlist", "name": "ng2-alfresco-documentlist",
"description": "Alfresco Angular2 Document List Component", "description": "Alfresco Angular2 Document List Component",
"version": "0.1.16", "version": "0.1.16",
"author": "Alfresco Software, Ltd.", "author": "Alfresco Software, Ltd.",
"scripts": { "scripts": {
"typings": "typings install", "typings": "typings install",
"start": "npm run build && npm run server", "server": "http-server -c-1 -o -p 8875 .",
"server": "http-server -c-1 -o -p 8875 .", "build": "npm run tslint && typings install && rm -rf dist && tsc && npm run copytemplates && license-check",
"build": "npm run tslint && typings install && rm -rf dist && tsc && npm run copytemplates && license-check", "build:w": "npm run tslint && typings install && rm -rf dist && npm run watch-task",
"tslint": "npm run tslint-src && npm run tslint-root", "watch-task": "concurrently \"npm run tsc:w\" \"npm run copytemplates:w\" \"license-check\"",
"tslint-src": "tslint -c tslint.json src/**/*.ts, src/**/*.spec.ts ", "tslint": "npm run tslint-src && npm run tslint-root",
"tslint-root": "tslint -c tslint.json *.ts", "tslint-src": "tslint -c tslint.json src/**/*.ts, src/**/*.spec.ts ",
"copytemplates": "npm run copy-html && npm run copy-css && npm run copy-i18n", "tslint-root": "tslint -c tslint.json *.ts",
"copy-html": "copyfiles './src/**/*.html' dist", "copytemplates": "npm run copy-html-css && npm run copy-i18n",
"copy-css": "copyfiles './src/**/*.css' dist", "copytemplates:w": "concurrently \"npm run copy-html-css:w\" \"npm run copy-i18n:w\"",
"copy-i18n": "copyfiles './i18n/**/*.json' dist", "copy-html-css": "cpx './src/**/*.{html,css}' dist/src",
"licensecheck": "license-check", "copy-html-css:w": "cpx './src/**/*.{html,css}' dist/src -w",
"tsc": "tsc", "copy-i18n": "copyfiles './i18n/**/*.json' dist/i18n",
"pretest": "npm run build", "copy-i18n:w": "cpx './i18n/**/*.json' dist/i18n -w",
"test": "karma start karma.conf.js --reporters mocha,coverage --single-run", "tsc": "tsc",
"test-browser": "karma start karma.conf.js --reporters kjhtml ", "tsc:w": "tsc -w",
"posttest": "node_modules/.bin/remap-istanbul -i coverage/report/coverage-final.json -o coverage/report -t html", "pretest": "npm run build",
"coverage": "npm run test && http-server -c-1 -o -p 9875 ./coverage/report", "test": "karma start karma.conf.js --reporters mocha,coverage --single-run",
"prepublish": "npm run build" "test-browser": "concurrently \"karma start karma.conf.js --reporters kjhtml\" \"npm run watch-task\"",
}, "posttest": "node_modules/.bin/remap-istanbul -i coverage/report/coverage-final.json -o coverage/report -t html",
"repository": { "coverage": "npm run test && http-server -c-1 -o -p 9875 ./coverage/report",
"type": "git", "prepublish": "npm run build"
"url": "https://github.com/Alfresco/dev-platform-webcomponents.git"
},
"bugs": {
"url": "https://github.com/Alfresco/dev-platform-webcomponents/issues"
},
"license": "Apache-2.0",
"contributors": [
{
"name": "Denys Vuika",
"email": "denis.vuyka@gmail.com"
}, },
{ "repository": {
"name": "Mario Romano", "type": "git",
"email": "mario.romano83@gmail.com" "url": "https://github.com/Alfresco/dev-platform-webcomponents.git"
} },
], "bugs": {
"keywords": [ "url": "https://github.com/Alfresco/dev-platform-webcomponents/issues"
"ng2", },
"angular", "license": "Apache-2.0",
"angular2", "contributors": [
"alfresco" {
], "name": "Denys Vuika",
"dependencies": { "email": "denis.vuyka@gmail.com"
"angular2": "2.0.0-beta.15", },
"es6-module-loader": "^0.17.8", {
"es6-shim": "^0.35.0", "name": "Mario Romano",
"ng2-alfresco-core": "^0.1.0", "email": "mario.romano83@gmail.com"
"reflect-metadata": "0.1.2", }
"rxjs": "5.0.0-beta.2",
"systemjs": "0.19.26",
"zone.js": "^0.6.12",
"alfresco-js-api": "^0.1.0"
},
"devDependencies": {
"copyfiles": "^0.2.1",
"coveralls": "^2.11.9",
"http-server": "0.8.5",
"jasmine-core": "2.4.1",
"karma": "~0.13.22",
"karma-chrome-launcher": "~1.0.1",
"karma-coverage": "^1.0.0",
"karma-jasmine": "~1.0.2",
"karma-mocha-reporter": "^2.0.3",
"karma-jasmine-html-reporter": "^0.2.0",
"license-check": "^1.0.4",
"remap-istanbul": "^0.6.3",
"traceur": "^0.0.91",
"tslint": "^3.8.1",
"typescript": "^1.8.10",
"typings": "^0.7.12"
},
"license-check-config": {
"src": [
"**/*.js",
"**/*.ts",
"!/**/coverage/**/*",
"!/**/demo/**/*",
"!/**/node_modules/**/*",
"!/**/typings/**/*",
"!*.js"
], ],
"path": "assets/license_header.txt", "keywords": [
"blocking": false, "ng2",
"logInfo": false, "angular",
"logError": true "angular2",
}, "alfresco"
"publishConfig": { ],
"registry": "http://devproducts.alfresco.me:4873/" "dependencies": {
} "angular2": "2.0.0-beta.15",
"es6-module-loader": "^0.17.8",
"es6-shim": "^0.35.0",
"ng2-alfresco-core": "^0.1.0",
"reflect-metadata": "0.1.2",
"rxjs": "5.0.0-beta.2",
"systemjs": "0.19.26",
"zone.js": "^0.6.12",
"alfresco-js-api": "^0.1.0"
},
"devDependencies": {
"concurrently": "^2.1.0",
"coveralls": "^2.11.9",
"cpx": "^1.3.1",
"http-server": "0.8.5",
"jasmine-core": "2.4.1",
"karma": "~0.13.22",
"karma-chrome-launcher": "~1.0.1",
"karma-coverage": "^1.0.0",
"karma-jasmine": "~1.0.2",
"karma-mocha-reporter": "^2.0.3",
"karma-jasmine-html-reporter": "^0.2.0",
"license-check": "^1.0.4",
"remap-istanbul": "^0.6.3",
"traceur": "^0.0.91",
"tslint": "^3.8.1",
"typescript": "^1.8.10",
"typings": "^0.7.12"
},
"license-check-config": {
"src": [
"**/*.js",
"**/*.ts",
"!/**/coverage/**/*",
"!/**/demo/**/*",
"!/**/node_modules/**/*",
"!/**/typings/**/*",
"!*.js"
],
"path": "assets/license_header.txt",
"blocking": false,
"logInfo": false,
"logError": true
},
"publishConfig": {
"registry": "http://devproducts.alfresco.me:4873/"
}
} }

View File

@@ -1,111 +1,115 @@
{ {
"name": "ng2-alfresco-login", "name": "ng2-alfresco-login",
"description": "Alfresco Angular2 Login Component", "description": "Alfresco Angular2 Login Component",
"version": "0.1.12", "version": "0.1.12",
"author": "Alfresco Software, Ltd.", "author": "Alfresco Software, Ltd.",
"scripts": { "scripts": {
"typings": "typings install", "typings": "typings install",
"start": "npm run build && npm run server", "server": "http-server -c-1 -o -p 8875 .",
"server": "http-server -c-1 -o -p 8875 .", "build": "npm run tslint && typings install && rm -rf dist && tsc && npm run copytemplates && license-check",
"build": "npm run tslint && typings install && rm -rf dist && tsc && npm run copytemplates && license-check", "build:w": "npm run tslint && typings install && rm -rf dist && npm run watch-task",
"tslint": "npm run tslint-src && npm run tslint-root", "watch-task": "concurrently \"npm run tsc:w\" \"npm run copytemplates:w\" \"license-check\"",
"tslint-src": "tslint -c tslint.json src/**/*.ts, src/**/*.spec.ts ", "tslint": "npm run tslint-src && npm run tslint-root",
"tslint-root": "tslint -c tslint.json *.ts", "tslint-src": "tslint -c tslint.json src/**/*.ts, src/**/*.spec.ts ",
"copytemplates": "npm run copy-html && npm run copy-css && npm run copy-i18n", "tslint-root": "tslint -c tslint.json *.ts",
"copy-html": "copyfiles './src/**/*.html' dist", "copytemplates": "npm run copy-html-css && npm run copy-i18n",
"copy-css": "copyfiles './src/**/*.css' dist", "copytemplates:w": "concurrently \"npm run copy-html-css:w\" \"npm run copy-i18n:w\"",
"copy-i18n": "copyfiles './i18n/**/*.json' dist", "copy-html-css": "cpx './src/**/*.{html,css}' dist/src",
"licensecheck": "license-check", "copy-html-css:w": "cpx './src/**/*.{html,css}' dist/src -w",
"tsc": "tsc", "copy-i18n": "copyfiles './i18n/**/*.json' dist/i18n",
"pretest": "npm run build", "copy-i18n:w": "cpx './i18n/**/*.json' dist/i18n -w",
"test": "karma start karma.conf.js --reporters mocha,coverage --single-run", "tsc": "tsc",
"test-browser": "karma start karma.conf.js --reporters kjhtml ", "tsc:w": "tsc -w",
"posttest": "node_modules/.bin/remap-istanbul -i coverage/report/coverage-final.json -o coverage/report -t html", "pretest": "npm run build",
"coverage": "npm run test && http-server -c-1 -o -p 9875 ./coverage/report", "test": "karma start karma.conf.js --reporters mocha,coverage --single-run",
"prepublish": "npm run build" "test-browser": "concurrently \"karma start karma.conf.js --reporters kjhtml\" \"npm run watch-task\"",
}, "posttest": "node_modules/.bin/remap-istanbul -i coverage/report/coverage-final.json -o coverage/report -t html",
"repository": { "coverage": "npm run test && http-server -c-1 -o -p 9875 ./coverage/report",
"type": "git", "prepublish": "npm run build"
"url": "https://github.com/Alfresco/dev-platform-webcomponents.git"
},
"bugs": {
"url": "https://github.com/Alfresco/dev-platform-webcomponents/issues"
},
"license": "Apache-2.0",
"contributors": [
{
"name": "Denys Vuika",
"email": "denis.vuyka@gmail.com"
}, },
{ "repository": {
"name": "Maurizio Vitale", "type": "git",
"email": "maurizio.vitale84@gmail.com" "url": "https://github.com/Alfresco/dev-platform-webcomponents.git"
}, },
{ "bugs": {
"name": "Mario Romano", "url": "https://github.com/Alfresco/dev-platform-webcomponents/issues"
"email": "mario.romano83@gmail.com"
}, },
{ "license": "Apache-2.0",
"name": "Eugenio Romano", "contributors": [
"email": "eugenio.romano83@gmail.com" {
} "name": "Denys Vuika",
], "email": "denis.vuyka@gmail.com"
"keywords": [ },
"ng2", {
"angular", "name": "Maurizio Vitale",
"angular2", "email": "maurizio.vitale84@gmail.com"
"alfresco" },
], {
"dependencies": { "name": "Mario Romano",
"angular2": "2.0.0-beta.15", "email": "mario.romano83@gmail.com"
"es6-module-loader": "^0.17.8", },
"es6-shim": "^0.35.0", {
"ng2-alfresco-core": "^0.1.7", "name": "Eugenio Romano",
"reflect-metadata": "0.1.2", "email": "eugenio.romano@alfresco.com"
"rxjs": "5.0.0-beta.2", }
"systemjs": "0.19.26",
"zone.js": "^0.6.12",
"alfresco-core-rest-api": "^0.1.0"
},
"peerDependencies": {
"angular2": "2.0.0-beta.15"
},
"devDependencies": {
"copyfiles": "^0.2.1",
"coveralls": "^2.11.9",
"http-server": "0.8.5",
"jasmine-core": "2.4.1",
"karma": "~0.13.22",
"karma-chrome-launcher": "~1.0.1",
"karma-coverage": "^1.0.0",
"karma-jasmine": "~1.0.2",
"karma-mocha-reporter": "^2.0.3",
"karma-jasmine-html-reporter": "^0.2.0",
"license-check": "^1.0.4",
"remap-istanbul": "^0.6.3",
"traceur": "^0.0.91",
"tslint": "^3.8.1",
"typescript": "^1.8.10",
"typings": "^0.7.12",
"xo": "^0.14.0",
"yargs": "^4.7.0"
},
"license-check-config": {
"src": [
"**/*.js",
"**/*.ts",
"!/**/coverage/**/*",
"!/**/demo/**/*",
"!/**/node_modules/**/*",
"!/**/typings/**/*",
"!*.js"
], ],
"path": "assets/license_header.txt", "keywords": [
"blocking": false, "ng2",
"logInfo": false, "angular",
"logError": true "angular2",
}, "alfresco"
"publishConfig": { ],
"registry": "http://devproducts.alfresco.me:4873/" "dependencies": {
} "angular2": "2.0.0-beta.15",
"es6-module-loader": "^0.17.8",
"es6-shim": "^0.35.0",
"ng2-alfresco-core": "^0.1.7",
"reflect-metadata": "0.1.2",
"rxjs": "5.0.0-beta.2",
"systemjs": "0.19.26",
"zone.js": "^0.6.12",
"alfresco-core-rest-api": "^0.1.0"
},
"peerDependencies": {
"angular2": "2.0.0-beta.15"
},
"devDependencies": {
"concurrently": "^2.1.0",
"coveralls": "^2.11.9",
"cpx": "^1.3.1",
"http-server": "0.8.5",
"jasmine-core": "2.4.1",
"karma": "~0.13.22",
"karma-chrome-launcher": "~1.0.1",
"karma-coverage": "^1.0.0",
"karma-jasmine": "~1.0.2",
"karma-mocha-reporter": "^2.0.3",
"karma-jasmine-html-reporter": "^0.2.0",
"license-check": "^1.0.4",
"remap-istanbul": "^0.6.3",
"traceur": "^0.0.91",
"tslint": "^3.8.1",
"typescript": "^1.8.10",
"typings": "^0.7.12",
"xo": "^0.14.0",
"yargs": "^4.7.0"
},
"license-check-config": {
"src": [
"**/*.js",
"**/*.ts",
"!/**/coverage/**/*",
"!/**/demo/**/*",
"!/**/node_modules/**/*",
"!/**/typings/**/*",
"!*.js"
],
"path": "assets/license_header.txt",
"blocking": false,
"logInfo": false,
"logError": true
},
"publishConfig": {
"registry": "http://devproducts.alfresco.me:4873/"
}
} }

View File

@@ -1,96 +1,101 @@
{ {
"name": "ng2-alfresco-search", "name": "ng2-alfresco-search",
"description": "Alfresco Angular2 Search Component", "description": "Alfresco Angular2 Search Component",
"version": "0.1.12", "version": "0.1.12",
"author": "Alfresco Software, Ltd.", "author": "Alfresco Software, Ltd.",
"scripts": { "scripts": {
"typings": "typings install", "typings": "typings install",
"start": "npm run build && npm run server", "server": "http-server -c-1 -o -p 8875 .",
"server": "http-server -c-1 -o -p 8875 .", "build": "npm run tslint && typings install && rm -rf dist && tsc && npm run copytemplates && license-check",
"build": "npm run tslint && typings install && rm -rf dist && tsc && npm run copytemplates && license-check", "build:w": "npm run tslint && typings install && rm -rf dist && npm run watch-task",
"tslint": "npm run tslint-src && npm run tslint-root", "watch-task": "concurrently \"npm run tsc:w\" \"npm run copytemplates:w\" \"license-check\"",
"tslint-src": "tslint -c tslint.json src/**/*.ts, src/**/*.spec.ts ", "tslint": "npm run tslint-src && npm run tslint-root",
"tslint-root": "tslint -c tslint.json *.ts", "tslint-src": "tslint -c tslint.json src/**/*.ts, src/**/*.spec.ts ",
"copytemplates": "npm run copy-html && npm run copy-css", "tslint-root": "tslint -c tslint.json *.ts",
"copy-html": "copyfiles './src/**/*.html' dist", "copytemplates": "npm run copy-html-css && npm run copy-i18n",
"copy-css": "copyfiles './src/**/*.css' dist", "copytemplates:w": "concurrently \"npm run copy-html-css:w\" \"npm run copy-i18n:w\"",
"licensecheck": "license-check", "copy-html-css": "cpx './src/**/*.{html,css}' dist/src",
"tsc": "tsc", "copy-html-css:w": "cpx './src/**/*.{html,css}' dist/src -w",
"pretest": "npm run build", "copy-i18n": "copyfiles './i18n/**/*.json' dist/i18n",
"test": "karma start karma.conf.js --reporters mocha,coverage --single-run", "copy-i18n:w": "cpx './i18n/**/*.json' dist/i18n -w",
"test-browser": "karma start karma.conf.js --reporters kjhtml ", "tsc": "tsc",
"posttest": "node_modules/.bin/remap-istanbul -i coverage/report/coverage-final.json -o coverage/report -t html", "tsc:w": "tsc -w",
"coverage": "npm run test && http-server -c-1 -o -p 9875 ./coverage/report", "pretest": "npm run build",
"prepublish": "npm run build" "test": "karma start karma.conf.js --reporters mocha,coverage --single-run",
}, "test-browser": "concurrently \"karma start karma.conf.js --reporters kjhtml\" \"npm run watch-task\"",
"repository": { "posttest": "node_modules/.bin/remap-istanbul -i coverage/report/coverage-final.json -o coverage/report -t html",
"type": "git", "coverage": "npm run test && http-server -c-1 -o -p 9875 ./coverage/report",
"url": "https://github.com/Alfresco/dev-platform-webcomponents.git" "prepublish": "npm run build"
}, },
"bugs": { "repository": {
"url": "https://github.com/Alfresco/dev-platform-webcomponents/issues" "type": "git",
}, "url": "https://github.com/Alfresco/dev-platform-webcomponents.git"
"license": "Apache-2.0", },
"contributors": [ "bugs": {
{ "url": "https://github.com/Alfresco/dev-platform-webcomponents/issues"
"name": "Will Abson", },
"email": "will.abson@alfresco.com" "license": "Apache-2.0",
} "contributors": [
], {
"keywords": [ "name": "Will Abson",
"ng2", "email": "will.abson@alfresco.com"
"angular", }
"angular2",
"alfresco"
],
"dependencies": {
"angular2": "2.0.0-beta.15",
"systemjs": "0.19.26",
"es6-shim": "^0.35.0",
"ng2-alfresco-core": "^0.1.25",
"reflect-metadata": "0.1.2",
"rxjs": "5.0.0-beta.2",
"zone.js": "^0.6.12",
"es6-module-loader": "^0.17.8",
"alfresco-js-api": "^0.1.0"
},
"peerDependencies": {
"angular2": "2.0.0-beta.15"
},
"devDependencies": {
"copyfiles": "^0.2.1",
"coveralls": "^2.11.9",
"http-server": "0.8.5",
"jasmine-core": "2.4.1",
"karma": "~0.13.22",
"karma-chrome-launcher": "~1.0.1",
"karma-coverage": "^1.0.0",
"karma-jasmine": "~1.0.2",
"karma-mocha-reporter": "^2.0.3",
"karma-jasmine-html-reporter": "^0.2.0",
"license-check": "^1.0.4",
"remap-istanbul": "^0.6.3",
"traceur": "^0.0.91",
"tslint": "^3.8.1",
"typescript": "^1.8.10",
"typings": "^0.7.12"
},
"license-check-config": {
"src": [
"**/*.js",
"**/*.ts",
"!/**/coverage/**/*",
"!/**/demo/**/*",
"!/**/node_modules/**/*",
"!/**/typings/**/*",
"!*.js"
], ],
"path": "assets/license_header.txt", "keywords": [
"blocking": false, "ng2",
"logInfo": false, "angular",
"logError": true "angular2",
}, "alfresco"
"publishConfig": { ],
"registry": "http://devproducts.alfresco.me:4873/" "dependencies": {
} "angular2": "2.0.0-beta.15",
"systemjs": "0.19.26",
"es6-shim": "^0.35.0",
"ng2-alfresco-core": "^0.1.25",
"reflect-metadata": "0.1.2",
"rxjs": "5.0.0-beta.2",
"zone.js": "^0.6.12",
"es6-module-loader": "^0.17.8",
"alfresco-js-api": "^0.1.0"
},
"peerDependencies": {
"angular2": "2.0.0-beta.15"
},
"devDependencies": {
"concurrently": "^2.1.0",
"coveralls": "^2.11.9",
"cpx": "^1.3.1",
"http-server": "0.8.5",
"jasmine-core": "2.4.1",
"karma": "~0.13.22",
"karma-chrome-launcher": "~1.0.1",
"karma-coverage": "^1.0.0",
"karma-jasmine": "~1.0.2",
"karma-mocha-reporter": "^2.0.3",
"karma-jasmine-html-reporter": "^0.2.0",
"license-check": "^1.0.4",
"remap-istanbul": "^0.6.3",
"traceur": "^0.0.91",
"tslint": "^3.8.1",
"typescript": "^1.8.10",
"typings": "^0.7.12"
},
"license-check-config": {
"src": [
"**/*.js",
"**/*.ts",
"!/**/coverage/**/*",
"!/**/demo/**/*",
"!/**/node_modules/**/*",
"!/**/typings/**/*",
"!*.js"
],
"path": "assets/license_header.txt",
"blocking": false,
"logInfo": false,
"logError": true
},
"publishConfig": {
"registry": "http://devproducts.alfresco.me:4873/"
}
} }

View File

@@ -1,104 +1,108 @@
{ {
"name": "ng2-alfresco-upload", "name": "ng2-alfresco-upload",
"description": "Alfresco Angular2 Upload Component", "description": "Alfresco Angular2 Upload Component",
"version": "0.1.33", "version": "0.1.32",
"author": "Alfresco Software, Ltd.", "author": "Alfresco Software, Ltd.",
"scripts": { "scripts": {
"typings": "typings install", "typings": "typings install",
"start": "npm run build && npm run server", "server": "http-server -c-1 -o -p 8875 .",
"server": "http-server -c-1 -o -p 8875 .", "build": "npm run tslint && typings install && rm -rf dist && tsc && npm run copytemplates && license-check",
"build": "npm run tslint && typings install && rm -rf dist && tsc && npm run copytemplates && license-check", "build:w": "npm run tslint && typings install && rm -rf dist && npm run watch-task",
"tslint": "npm run tslint-src && npm run tslint-root", "watch-task": "concurrently \"npm run tsc:w\" \"npm run copytemplates:w\" \"license-check\"",
"tslint-src": "tslint -c tslint.json src/**/*.ts, src/**/*.spec.ts ", "tslint": "npm run tslint-src && npm run tslint-root",
"tslint-root": "tslint -c tslint.json *.ts", "tslint-src": "tslint -c tslint.json src/**/*.ts, src/**/*.spec.ts ",
"copytemplates": "npm run copy-html && npm run copy-css && npm run copy-i18n", "tslint-root": "tslint -c tslint.json *.ts",
"copy-html": "copyfiles './src/**/*.html' dist", "copytemplates": "npm run copy-html-css && npm run copy-i18n",
"copy-css": "copyfiles './src/**/*.css' dist", "copytemplates:w": "concurrently \"npm run copy-html-css:w\" \"npm run copy-i18n:w\"",
"copy-i18n": "copyfiles './i18n/**/*.json' dist", "copy-html-css": "cpx './src/**/*.{html,css}' dist/src",
"licensecheck": "license-check", "copy-html-css:w": "cpx './src/**/*.{html,css}' dist/src -w",
"tsc": "tsc", "copy-i18n": "copyfiles './i18n/**/*.json' dist/i18n",
"pretest": "npm run build", "copy-i18n:w": "cpx './i18n/**/*.json' dist/i18n -w",
"test": "karma start karma.conf.js --reporters mocha,coverage --single-run", "tsc": "tsc",
"test-browser": "karma start karma.conf.js --reporters kjhtml ", "tsc:w": "tsc -w",
"posttest": "node_modules/.bin/remap-istanbul -i coverage/report/coverage-final.json -o coverage/report -t html", "pretest": "npm run build",
"coverage": "npm run test && http-server -c-1 -o -p 9875 ./coverage/report", "test": "karma start karma.conf.js --reporters mocha,coverage --single-run",
"prepublish": "npm run build" "test-browser": "concurrently \"karma start karma.conf.js --reporters kjhtml\" \"npm run watch-task\"",
}, "posttest": "node_modules/.bin/remap-istanbul -i coverage/report/coverage-final.json -o coverage/report -t html",
"repository": { "coverage": "npm run test && http-server -c-1 -o -p 9875 ./coverage/report",
"type": "git", "prepublish": "npm run build"
"url": "https://github.com/Alfresco/dev-platform-webcomponents.git"
},
"bugs": {
"url": "https://github.com/Alfresco/dev-platform-webcomponents/issues"
},
"license": "Apache-2.0",
"contributors": [
{
"name": "Mario Romano",
"email": "mario.romano83@gmail.com"
}, },
{ "repository": {
"name": "Eugenio Romano", "type": "git",
"email": "eugenio.romano83@gmail.com" "url": "https://github.com/Alfresco/dev-platform-webcomponents.git"
} },
], "bugs": {
"keywords": [ "url": "https://github.com/Alfresco/dev-platform-webcomponents/issues"
"ng2", },
"angular", "license": "Apache-2.0",
"angular2", "contributors": [
"upload", {
"alfresco" "name": "Mario Romano",
], "email": "mario.romano83@gmail.com"
"dependencies": { },
"alfresco-core-rest-api": "^0.1.0", {
"angular2": "2.0.0-beta.15", "name": "Eugenio Romano",
"es6-module-loader": "^0.17.8", "email": "eugenio.romano@alfresco.com"
"es6-shim": "^0.35.0", }
"ng2-alfresco-core": "^0.1.0",
"reflect-metadata": "0.1.2",
"rxjs": "5.0.0-beta.2",
"systemjs": "0.19.26",
"zone.js": "^0.6.12"
},
"peerDependencies": {
"angular2": "2.0.0-beta.15"
},
"devDependencies": {
"copyfiles": "^0.2.1",
"coveralls": "^2.11.9",
"http-server": "0.8.5",
"jasmine-ajax": "^3.2.0",
"jasmine-core": "2.4.1",
"karma": "~0.13.22",
"karma-chrome-launcher": "~1.0.1",
"karma-coverage": "^1.0.0",
"karma-jasmine": "~1.0.2",
"karma-jasmine-ajax": "^0.1.13",
"karma-jasmine-html-reporter": "^0.2.0",
"karma-mocha-reporter": "^2.0.3",
"license-check": "^1.0.4",
"remap-istanbul": "^0.6.3",
"traceur": "^0.0.91",
"tslint": "^3.8.1",
"typescript": "^1.8.10",
"typings": "^0.7.12"
},
"license-check-config": {
"src": [
"**/*.js",
"**/*.ts",
"!/**/coverage/**/*",
"!/**/demo/**/*",
"!/**/node_modules/**/*",
"!/**/typings/**/*",
"!*.js"
], ],
"path": "assets/license_header.txt", "keywords": [
"blocking": false, "ng2",
"logInfo": false, "angular",
"logError": true "angular2",
}, "upload",
"publishConfig": { "alfresco"
"registry": "http://devproducts.alfresco.me:4873/" ],
} "dependencies": {
"alfresco-core-rest-api": "^0.1.0",
"angular2": "2.0.0-beta.15",
"es6-module-loader": "^0.17.8",
"es6-shim": "^0.35.0",
"ng2-alfresco-core": "^0.1.0",
"reflect-metadata": "0.1.2",
"rxjs": "5.0.0-beta.2",
"systemjs": "0.19.26",
"zone.js": "^0.6.12"
},
"peerDependencies": {
"angular2": "2.0.0-beta.15"
},
"devDependencies": {
"concurrently": "^2.1.0",
"coveralls": "^2.11.9",
"cpx": "^1.3.1",
"http-server": "0.8.5",
"jasmine-ajax": "^3.2.0",
"jasmine-core": "2.4.1",
"karma": "~0.13.22",
"karma-chrome-launcher": "~1.0.1",
"karma-coverage": "^1.0.0",
"karma-jasmine": "~1.0.2",
"karma-jasmine-ajax": "^0.1.13",
"karma-jasmine-html-reporter": "^0.2.0",
"karma-mocha-reporter": "^2.0.3",
"license-check": "^1.0.4",
"remap-istanbul": "^0.6.3",
"traceur": "^0.0.91",
"tslint": "^3.8.1",
"typescript": "^1.8.10",
"typings": "^0.7.12"
},
"license-check-config": {
"src": [
"**/*.js",
"**/*.ts",
"!/**/coverage/**/*",
"!/**/demo/**/*",
"!/**/node_modules/**/*",
"!/**/typings/**/*",
"!*.js"
],
"path": "assets/license_header.txt",
"blocking": false,
"logInfo": false,
"logError": true
},
"publishConfig": {
"registry": "http://devproducts.alfresco.me:4873/"
}
} }

View File

@@ -8,18 +8,22 @@
"start": "npm run build && npm run server", "start": "npm run build && npm run server",
"server": "http-server -c-1 -o -p 8875 .", "server": "http-server -c-1 -o -p 8875 .",
"build": "npm run tslint && typings install && rm -rf dist && tsc && npm run copytemplates && license-check", "build": "npm run tslint && typings install && rm -rf dist && tsc && npm run copytemplates && license-check",
"build:w": "npm run tslint && typings install && rm -rf dist && npm run watch-task",
"watch-task": "concurrently \"npm run tsc:w\" \"npm run copytemplates:w\" \"license-check\"",
"tslint": "npm run tslint-src && npm run tslint-root", "tslint": "npm run tslint-src && npm run tslint-root",
"tslint-src": "tslint -c tslint.json src/**/*.ts, src/**/*.spec.ts ", "tslint-src": "tslint -c tslint.json src/**/*.ts, src/**/*.spec.ts ",
"tslint-root": "tslint -c tslint.json *.ts", "tslint-root": "tslint -c tslint.json *.ts",
"copytemplates": "npm run copy-html && npm run copy-css && npm run copy-i18n", "copytemplates": "npm run copy-html-css && npm run copy-i18n",
"copy-html": "copyfiles './src/**/*.html' dist", "copytemplates:w": "concurrently \"npm run copy-html-css:w\" \"npm run copy-i18n:w\"",
"copy-css": "copyfiles './src/**/*.css' dist", "copy-html-css": "cpx './src/**/*.{html,css}' dist/src",
"copy-i18n": "copyfiles './i18n/**/*.json' dist", "copy-html-css:w": "cpx './src/**/*.{html,css}' dist/src -w",
"licensecheck": "license-check", "copy-i18n": "copyfiles './i18n/**/*.json' dist/i18n",
"copy-i18n:w": "cpx './i18n/**/*.json' dist/i18n -w",
"tsc": "tsc", "tsc": "tsc",
"tsc:w": "tsc -w",
"pretest": "npm run build", "pretest": "npm run build",
"test": "karma start karma.conf.js --reporters mocha,coverage --single-run", "test": "karma start karma.conf.js --reporters mocha,coverage --single-run",
"test-browser": "karma start karma.conf.js --reporters kjhtml ", "test-browser": "concurrently \"karma start karma.conf.js --reporters kjhtml\" \"npm run watch-task\"",
"posttest": "node_modules/.bin/remap-istanbul -i coverage/report/coverage-final.json -o coverage/report -t html", "posttest": "node_modules/.bin/remap-istanbul -i coverage/report/coverage-final.json -o coverage/report -t html",
"coverage": "npm run test && http-server -c-1 -o -p 9875 ./coverage/report", "coverage": "npm run test && http-server -c-1 -o -p 9875 ./coverage/report",
"prepublish": "npm run build" "prepublish": "npm run build"
@@ -60,8 +64,9 @@
"angular2": "2.0.0-beta.15" "angular2": "2.0.0-beta.15"
}, },
"devDependencies": { "devDependencies": {
"copyfiles": "^0.2.1", "concurrently": "^2.1.0",
"coveralls": "^2.11.9", "coveralls": "^2.11.9",
"cpx": "^1.3.1",
"http-server": "0.8.5", "http-server": "0.8.5",
"jasmine-ajax": "^3.2.0", "jasmine-ajax": "^3.2.0",
"jasmine-core": "2.4.1", "jasmine-core": "2.4.1",