2019-12-21 21:53:18 +01:00
{
"name" : "karideo" ,
"version" : "0.0.0" ,
"license" : "MIT" ,
"scripts" : {
2022-03-09 21:49:58 +01:00
"all" : "npm run build && npm run test" ,
2019-12-21 21:53:18 +01:00
"ng" : "ng" ,
2020-03-03 23:25:38 +01:00
"start" : "ng serve --watch" ,
2022-03-09 21:49:58 +01:00
"_____test" : "npm run test-unit && npm run test-readme && npm run test-component" ,
2019-12-21 21:53:18 +01:00
"build" : "ng build --prod" ,
"test" : "ng test" ,
"lint" : "ng lint" ,
2022-03-09 21:49:58 +01:00
"e2e" : "ng e2e" ,
"__all" : "npm run build && npm run test && npm run generate-specs && npm run docs" ,
"__build" : "npm run lint-src && npm run clean-dist && npm run plint && npm run check-copyright && webpack-cli --type production && npx downlevel-dts dist/typings dist/typings3.6" ,
"__build-dev" : "npm run clean-dist && webpack-cli --type development" ,
"__clean-dist" : "rimraf dist/*" ,
"__clean-lint" : "rimraf target/lint/*" ,
"__clean-test-component" : "rimraf target/test/component/*" ,
"__clean-test-unit" : "rimraf target/test/unit/*" ,
"__deps-checker" : "node ./scripts/ifabric-last" ,
"__generate-specs" : "specgen . -i .gitignore -t node_modules/@ifabric-dev/specgen/templates/specs.md.mustache -x target/test/unit/junit-report.xml -f docs/fma/renderer-fma.json -o REQUIREMENTS.md" ,
"__lint" : "npm run clean-lint && npm run lint-src && npm run lint-unit && npm run lint-component" ,
"__lint-component" : "tslint -c ./test/tslint.json -p ./tsconfig.json \"./test/**/*.ts\"" ,
"__lint-src" : "tslint -p ./tsconfig.json \"./src/**/*.ts\"" ,
"__lint-unit" : "tslint -c ./test/tslint.json -p ./tsconfig.json \"./src/**/*.spec.ts\"" ,
"__plint" : "plint package.json" ,
"__start" : "webpack-dev-server --type development" ,
"__start-ts" : "rollup -w -c dev/ts/rollup.config.js" ,
"__test" : "npm run test-unit && npm run test-readme && npm run test-component" ,
"__test-component" : "npm run lint-component && npm run clean-test-component && karma start ./test/karma-crs.conf.js --grep \"!@performance|readme\"" ,
"__test-perf" : "npm run lint-component && npm run clean-test-component && karma start ./test/karma-crs-performance.conf.js --grep @performance" ,
"__test-readme" : "npm run lint-component && npm run clean-test-component && karma start ./test/karma-crs.conf.js --grep @readme" ,
"__test-unit" : "npm run lint-unit && npm run clean-test-unit && karma start ./test/karma-unit.conf.js" ,
"__test-watch" : "karma start ./test/karma-unit.conf.js --no-single-run --auto-watch" ,
"__test-watch-comp" : "npm run clean-test-component && karma start ./test/karma-crs.conf.js --no-single-run --auto-watch" ,
"__docs" : "rimraf docs/md && typedoc --options ./typedoc.json && api-extractor run --local" ,
"__check-copyright" : "check-copyright -f src/**/*.ts"
} ,
2019-12-21 21:53:18 +01:00
"private" : true ,
"dependencies" : {
2022-03-09 21:49:58 +01:00
"@angular/animations" : "^13.2.5" ,
"@angular/cdk" : "^13.2.5" ,
"@angular/common" : "^13.2.5" ,
"@angular/compiler" : "^13.2.5" ,
"@angular/core" : "^13.2.5" ,
"@angular/forms" : "^13.2.5" ,
"@angular/material" : "^13.2.5" ,
"@angular/platform-browser" : "^13.2.5" ,
"@angular/platform-browser-dynamic" : "^13.2.5" ,
"@angular/router" : "^13.2.5" ,
"core-js" : "^3.21.1" ,
2021-09-16 01:04:11 +02:00
"jquery" : "^3.6.0" ,
2022-03-09 21:49:58 +01:00
"rxjs" : "^7.5.4" ,
"tslib" : "^2.3.1" ,
"videogular" : "^2.2.1" ,
"zone.js" : "^0.11.5"
2019-12-21 21:53:18 +01:00
} ,
"devDependencies" : {
2022-03-09 21:49:58 +01:00
"@angular-devkit/build-angular" : "^13.2.5" ,
"@angular/cli" : "^13.2.5" ,
"@angular/compiler-cli" : "^13.2.5" ,
"@angular/language-service" : "^13.2.5" ,
"@types/jasmine" : "^3.10.3" ,
"@types/jasminewd2" : "^2.0.10" ,
"@types/node" : "^17.0.21" ,
2021-09-16 01:04:11 +02:00
"codelyzer" : "^6.0.2" ,
2022-03-09 21:49:58 +01:00
"jasmine-core" : "^4.0.1" ,
2021-09-16 01:04:11 +02:00
"jasmine-spec-reporter" : "^7.0.0" ,
2022-03-09 21:49:58 +01:00
"karma" : "^6.3.17" ,
2021-09-16 01:04:11 +02:00
"karma-chrome-launcher" : "^3.1.0" ,
2022-03-09 21:49:58 +01:00
"karma-coverage-istanbul-reporter" : "^3.0.3" ,
"karma-jasmine" : "^4.0.1" ,
"karma-jasmine-html-reporter" : "^1.7.0" ,
2021-09-16 01:04:11 +02:00
"protractor" : "^7.0.0" ,
2022-03-09 21:49:58 +01:00
"ts-node" : "^10.7.0" ,
2021-09-16 01:04:11 +02:00
"tslint" : "^5.20.1" ,
2022-03-09 21:49:58 +01:00
"typescript" : "~4.5.5"
2019-12-21 21:53:18 +01:00
}
}