143 lines
4.0 KiB
JSON
143 lines
4.0 KiB
JSON
{
|
|
"_args": [
|
|
[
|
|
"ts-loader@7.0.5",
|
|
"/home/node/nuxt"
|
|
]
|
|
],
|
|
"_development": true,
|
|
"_from": "ts-loader@7.0.5",
|
|
"_id": "ts-loader@7.0.5",
|
|
"_inBundle": false,
|
|
"_integrity": "sha512-zXypEIT6k3oTc+OZNx/cqElrsbBtYqDknf48OZos0NQ3RTt045fBIU8RRSu+suObBzYB355aIPGOe/3kj9h7Ig==",
|
|
"_location": "/ts-loader",
|
|
"_phantomChildren": {},
|
|
"_requested": {
|
|
"type": "version",
|
|
"registry": true,
|
|
"raw": "ts-loader@7.0.5",
|
|
"name": "ts-loader",
|
|
"escapedName": "ts-loader",
|
|
"rawSpec": "7.0.5",
|
|
"saveSpec": null,
|
|
"fetchSpec": "7.0.5"
|
|
},
|
|
"_requiredBy": [
|
|
"/@nuxt/typescript-build"
|
|
],
|
|
"_resolved": "https://registry.npmjs.org/ts-loader/-/ts-loader-7.0.5.tgz",
|
|
"_spec": "7.0.5",
|
|
"_where": "/home/node/nuxt",
|
|
"author": {
|
|
"name": "John Reilly",
|
|
"email": "johnny_reilly@hotmail.com",
|
|
"url": "https://blog.johnnyreilly.com"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/TypeStrong/ts-loader/issues"
|
|
},
|
|
"contributors": [
|
|
{
|
|
"name": "John Reilly",
|
|
"email": "johnny_reilly@hotmail.com",
|
|
"url": "https://blog.johnnyreilly.com"
|
|
},
|
|
{
|
|
"name": "James Brantly",
|
|
"email": "james@jbrantly.com",
|
|
"url": "http://www.jbrantly.com/"
|
|
}
|
|
],
|
|
"dependencies": {
|
|
"chalk": "^2.3.0",
|
|
"enhanced-resolve": "^4.0.0",
|
|
"loader-utils": "^1.0.2",
|
|
"micromatch": "^4.0.0",
|
|
"semver": "^6.0.0"
|
|
},
|
|
"description": "TypeScript loader for webpack",
|
|
"devDependencies": {
|
|
"@types/micromatch": "^3.1.0",
|
|
"@types/node": "*",
|
|
"@types/semver": "^6.0.0",
|
|
"@types/webpack": "^4.4.30",
|
|
"babel": "^6.0.0",
|
|
"babel-core": "^6.0.0",
|
|
"babel-loader": "^7.0.0",
|
|
"babel-polyfill": "^6.16.0",
|
|
"babel-preset-es2015": "^6.0.0",
|
|
"babel-preset-es2016": "^6.16.0",
|
|
"babel-preset-react": "^6.0.0",
|
|
"escape-string-regexp": "^2.0.0",
|
|
"fs-extra": "^7.0.0",
|
|
"glob": "^7.1.1",
|
|
"html-webpack-plugin": "^3.2.0",
|
|
"husky": "^2.0.0",
|
|
"jasmine-core": "^3.0.0",
|
|
"karma": "^4.0.0",
|
|
"karma-chrome-launcher": "^2.2.0",
|
|
"karma-jasmine": "^2.0.0",
|
|
"karma-mocha-reporter": "^2.0.0",
|
|
"karma-sourcemap-loader": "^0.3.6",
|
|
"karma-webpack": "^4.0.0-rc.5",
|
|
"lint-staged": "^8.0.0",
|
|
"markdown-toc": "^1.2.0",
|
|
"mkdirp": "^0.5.1",
|
|
"mocha": "^6.0.0",
|
|
"prettier": "^1.11.1",
|
|
"rimraf": "^2.6.2",
|
|
"tslint": "^5.11.0",
|
|
"tslint-config-prettier": "^1.15.0",
|
|
"typescript": "^3.6.2",
|
|
"webpack": "^4.5.0",
|
|
"webpack-cli": "^3.1.1"
|
|
},
|
|
"engines": {
|
|
"node": ">=10.0.0"
|
|
},
|
|
"homepage": "https://github.com/TypeStrong/ts-loader",
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged"
|
|
}
|
|
},
|
|
"keywords": [
|
|
"ts-loader",
|
|
"typescript-loader",
|
|
"webpack",
|
|
"loader",
|
|
"typescript",
|
|
"ts"
|
|
],
|
|
"license": "MIT",
|
|
"lint-staged": {
|
|
"src/**/*.{ts,md}": [
|
|
"prettier --write",
|
|
"git add"
|
|
]
|
|
},
|
|
"main": "index.js",
|
|
"name": "ts-loader",
|
|
"peerDependencies": {
|
|
"typescript": "*"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/TypeStrong/ts-loader.git"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc --version && tsc --project \"./src\"",
|
|
"clean": "git clean -xfd test/comparison-tests && git clean -xfd test/execution-tests",
|
|
"comparison-tests": "git clean -xfd test/comparison-tests && npm link ./test/comparison-tests/testLib && node test/comparison-tests/run-tests.js",
|
|
"comparison-tests-generate": "git clean -xfd test/comparison-tests && node test/comparison-tests/stub-new-version.js",
|
|
"docker:build": "docker build -t ts-loader .",
|
|
"execution-tests": "git clean -xfd test/execution-tests && node test/execution-tests/run-tests.js",
|
|
"generate-toc": "markdown-toc -i ./README.md && git add README.md && git commit -m \"chore: update docs\"",
|
|
"lint": "tslint --project \"./src\"",
|
|
"postdocker:build": "docker run -it ts-loader yarn test",
|
|
"test": "git clean -xfd test/comparison-tests && git clean -xfd test/execution-tests && node test/run-tests.js"
|
|
},
|
|
"types": "dist",
|
|
"version": "7.0.5"
|
|
}
|