arcade-machine/package.json

84 строки
2.4 KiB
JSON

{
"name": "arcade-machine",
"version": "6.0.0",
"scripts": {
"gulp": "gulp",
"build": "gulp build",
"ngc": "cd staging && ngc",
"prepublishOnly": "npm run build",
"clean": "rimraf node_modules doc dist && npm cache clean",
"test:lint": "tslint -t verbose --project tsconfig.json \"src/**/*.ts\"",
"test:unit": "gulp test",
"fmt": "prettier --write \"src/**/*.{js,json,ts}\" && npm run test:lint -- --fix",
"test": "npm-run-all --parallel test:lint test:unit",
"start": "npm run serve",
"serve": "webpack-dev-server --config demo/webpack.config.js"
},
"main": "dist/index.js",
"module": "dist/index.js",
"typings": "dist/index.d.ts",
"sideEffects": false,
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/mixer/arcade-machine.git"
},
"engines": {
"node": ">=10.16.0",
"npm": ">=6.14.4"
},
"dependencies": {
"@angular/core": "^9.1.0",
"rxjs": "^6.0.0",
"uwp-keycodes": "^1.0.1"
},
"devDependencies": {
"@angular/common": "^9.1.0",
"@angular/compiler": "^9.1.0",
"@angular/compiler-cli": "^9.1.0",
"@angular/forms": "^9.1.0",
"@angular/platform-browser": "^9.1.0",
"@angular/platform-browser-dynamic": "^9.1.0",
"@angular/router": "^9.1.0",
"@types/jasmine": "^2.8.6",
"@types/winrt-uwp": "0.0.19",
"awesome-typescript-loader": "^3.4.1",
"clean-webpack-plugin": "^0.1.18",
"codelyzer": "^3.2.2",
"core-js": "^2.5.3",
"gulp": "^3.9.1",
"gulp-clean": "^0.4.0",
"gulp-concat": "^2.6.0",
"gulp-typescript": "^4.0.1",
"html-webpack-plugin": "^2.30.1",
"jasmine-core": "^2.99.1",
"karma": "^1.7.1",
"karma-browserstack-launcher": "^1.6.0",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.1.1",
"karma-firefox-launcher": "^1.1.0",
"karma-jasmine": "^1.1.1",
"karma-mocha-reporter": "^2.2.5",
"karma-sauce-launcher": "^1.2.0",
"karma-sourcemap-loader": "^0.3.7",
"merge2": "^1.2.1",
"npm-run-all": "^4.1.2",
"prettier": "^1.10.2",
"rimraf": "^2.6.2",
"run-sequence": "^2.2.1",
"systemjs": "^0.20.19",
"ts-helpers": "^1.1.1",
"tslint": "^5.9.1",
"tslint-microsoft-contrib": "^5.0.3",
"typescript": "~3.7.0",
"webpack": "^3.11.0",
"webpack-dev-server": "^2.11.5",
"zone.js": "^0.10.3"
},
"prettier": {
"trailingComma": "all",
"singleQuote": true,
"printWidth": 100
}
}