mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-26 17:24:56 +00:00
97 lines
3.3 KiB
JSON
97 lines
3.3 KiB
JSON
{
|
|
"name": "ng2-alfresco-webscript",
|
|
"description": "Alfresco webscript executor",
|
|
"version": "0.3.2",
|
|
"author": "Alfresco Software, Ltd.",
|
|
"main": "./dist/index.js",
|
|
"typings": "./dist/index.d.ts",
|
|
"scripts": {
|
|
"clean": "npm install rimraf && rimraf dist node_modules typings",
|
|
"build": "npm run tslint && rimraf dist && tsc && npm run copy-dist && license-check",
|
|
"build:w": "npm run tslint && rimraf dist && npm run watch-task",
|
|
"watch-task": "concurrently \"npm run tsc:w\" \"npm run copy-dist:w\" \"license-check\"",
|
|
"tslint": "tslint -c tslint.json *.ts && tslint -c tslint.json 'src/{,**/}**.ts'",
|
|
"copy-dist": "cpx \"./src/**/*.{html,css,json,png,jpg,gif,svg}\" ./dist/src",
|
|
"copy-dist:w": "cpx \"./src/**/*.{html,css,json,png,jpg,gif,svg}\" ./dist/src -w",
|
|
"tsc": "tsc",
|
|
"tsc:w": "tsc -w",
|
|
"pretest": "npm run build",
|
|
"test": "karma start karma.conf.js --reporters mocha,coverage --single-run",
|
|
"test-browser": "npm run build && concurrently \"karma start karma.conf.js --reporters kjhtml\" \"npm run watch-task\"",
|
|
"posttest": "remap-istanbul -i coverage/report/coverage-final.json -o coverage/report -t html && remap-istanbul -i coverage/report/coverage-final.json -o coverage/report/coverage-final.json",
|
|
"coverage": "npm run test && wsrv -o -p 9875 ./coverage/report",
|
|
"prepublish": "npm run build",
|
|
"travis": "npm link ng2-alfresco-core ng2-alfresco-datatable"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/Alfresco/alfresco-ng2-components.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/Alfresco/alfresco-ng2-components/issues"
|
|
},
|
|
"dependencies": {
|
|
"@angular/common": "2.0.0",
|
|
"@angular/compiler": "2.0.0",
|
|
"@angular/core": "2.0.0",
|
|
"@angular/forms": "2.0.0",
|
|
"@angular/http": "2.0.0",
|
|
"@angular/platform-browser": "2.0.0",
|
|
"@angular/platform-browser-dynamic": "2.0.0",
|
|
"core-js": "^2.4.1",
|
|
"reflect-metadata": "^0.1.3",
|
|
"rxjs": "5.0.0-beta.12",
|
|
"systemjs": "0.19.27",
|
|
"zone.js": "^0.6.23",
|
|
|
|
"intl": "1.2.4",
|
|
"dialog-polyfill": "^0.4.3",
|
|
"element.scrollintoviewifneeded-polyfill": "^1.0.1",
|
|
"material-design-icons": "2.2.3",
|
|
"material-design-lite": "1.2.1",
|
|
|
|
"ng2-translate": "2.5.0",
|
|
"alfresco-js-api": "^0.3.0",
|
|
"ng2-alfresco-core": "0.3.2",
|
|
"ng2-alfresco-datatable": "0.3.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^6.0.42",
|
|
"@types/core-js": "^0.9.32",
|
|
"@types/jasmine": "^2.2.33",
|
|
"concurrently": "^2.2.0",
|
|
"cpx": "^1.3.1",
|
|
"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",
|
|
"material-design-lite": "^1.1.3",
|
|
"remap-istanbul": "^0.6.3",
|
|
"rimraf": "2.5.2",
|
|
"traceur": "^0.0.91",
|
|
"tslint": "^3.8.1",
|
|
"typescript": "^2.0.3",
|
|
"wsrv": "^0.1.5"
|
|
},
|
|
"keywords": [
|
|
"webscript",
|
|
"alfresco-component"
|
|
],
|
|
"license-check-config": {
|
|
"src": [
|
|
"./dist/**/*.js"
|
|
],
|
|
"path": "assets/license_header.txt",
|
|
"blocking": false,
|
|
"logInfo": false,
|
|
"logError": true
|
|
},
|
|
"license": "Apache-2.0"
|
|
}
|