Files
NativeScript/packages/webpack/package.json
2022-03-01 12:32:38 -08:00

105 lines
3.2 KiB
JSON

{
"name": "@nativescript/webpack",
"version": "4.1.0",
"main": "index",
"description": "Webpack plugin for NativeScript",
"homepage": "https://nativescript.org",
"bugs": "https://github.com/NativeScript/NativeScript/issues",
"contributors": [
"Hristo Deshev <hristo.deshev@telerik.com>",
"NativeScript <oss@nativescript.org>"
],
"nativescript": {
"hooks": [
{
"type": "after-prepare",
"script": "lib/after-prepare.js",
"inject": true
},
{
"type": "before-checkForChanges",
"script": "lib/before-checkForChanges.js",
"inject": true
}
]
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/NativeScript/nativescript-dev-webpack.git"
},
"scripts": {
"clean": "npx rimraf -- node_modules package-lock.json && npm i --ignore-scripts --legacy-peer-deps",
"tsc": "tsc",
"postinstall": "node postinstall.js",
"preuninstall": "node preuninstall.js",
"postpack": "rm -rf node_modules",
"setup": "npm run clean && npm run build",
"build": "npm run tsc && npm run jasmine",
"test": "npm run build",
"jasmine": "jasmine --config=jasmine-config/jasmine.json",
"coverage": "nyc npm run test",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
},
"bin": {
"install-ns-webpack": "./bin/install-ns-webpack",
"remove-ns-webpack": "./bin/remove-ns-webpack",
"update-ns-webpack": "./bin/update-ns-webpack",
"ns-bundle": "./bin/ns-bundle",
"ns-verify-bundle": "./bin/ns-verify-bundle",
"generate-android-snapshot": "./bin/generate-android-snapshot"
},
"dependencies": {
"@angular-devkit/core": "~10.0.0",
"@nativescript/hook": "~2.0.0",
"clean-webpack-plugin": "~3.0.0",
"copy-webpack-plugin": "4.6.0",
"css": "~3.0.0",
"css-loader": "~4.2.0",
"escape-string-regexp": "~4.0.0",
"fork-ts-checker-webpack-plugin": "~5.0.0",
"global-modules-path": "~2.3.0",
"loader-utils": "~2.0.0",
"minimatch": "~3.0.4",
"nativescript-worker-loader": "~0.12.0",
"properties-reader": "~2.0.0",
"proxy-lib": "0.4.0",
"raw-loader": "~4.0.0",
"resolve-url-loader": "~3.1.0",
"sass-loader": "~9.0.0",
"sax": "^1.2.4",
"schema-utils": "~2.7.0",
"semver": "^7.3.0",
"shelljs": "~0.8.4",
"tapable": "~1.1.3",
"terser": "~5.0.0",
"terser-webpack-plugin": "~3.0.6",
"ts-loader": "^8.0.2",
"webpack": "~4.44.1",
"webpack-bundle-analyzer": "~3.8.0",
"webpack-cli": "~3.3.12",
"webpack-sources": "~1.4.3"
},
"devDependencies": {
"@angular/compiler": "~10.0.0",
"@angular/compiler-cli": "~10.0.0",
"@istanbuljs/nyc-config-typescript": "^1.0.0",
"@ngtools/webpack": "~10.0.0",
"@types/css": "~0.0.31",
"@types/jasmine": "3.6.6",
"@types/loader-utils": "^2.0.0",
"@types/node": "~14.0.0",
"@types/proxyquire": "~1.3.28",
"@types/sax": "^1.2.0",
"@types/semver": "^7.3.0",
"@types/webpack": "^4.41.21",
"conventional-changelog-cli": "~2.0.34",
"jasmine": "3.6.4",
"jasmine-spec-reporter": "6.0.0",
"nyc": "^15.1.0",
"proxyquire": "~2.1.0",
"source-map-support": "^0.5.13",
"typescript": "4.5.4"
}
}