- Timestamp:
- 11/23/21 14:58:44 (3 years ago)
- Branches:
- master
- Children:
- e29cc2e
- Parents:
- ceaed42
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trip-planner-front/node_modules/sass-loader/package.json
rceaed42 r59329aa 1 1 { 2 "name": "sass-loader", 3 "version": "12.1.0", 4 "description": "Sass loader for webpack", 5 "license": "MIT", 6 "repository": "webpack-contrib/sass-loader", 7 "author": "J. Tangelder", 8 "homepage": "https://github.com/webpack-contrib/sass-loader", 9 "bugs": "https://github.com/webpack-contrib/sass-loader/issues", 10 "funding": { 11 "type": "opencollective", 12 "url": "https://opencollective.com/webpack" 2 "_args": [ 3 [ 4 "sass-loader@12.1.0", 5 "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front" 6 ] 7 ], 8 "_development": true, 9 "_from": "sass-loader@12.1.0", 10 "_id": "sass-loader@12.1.0", 11 "_inBundle": false, 12 "_integrity": "sha512-FVJZ9kxVRYNZTIe2xhw93n3xJNYZADr+q69/s98l9nTCrWASo+DR2Ot0s5xTKQDDEosUkatsGeHxcH4QBp5bSg==", 13 "_location": "/sass-loader", 14 "_phantomChildren": {}, 15 "_requested": { 16 "type": "version", 17 "registry": true, 18 "raw": "sass-loader@12.1.0", 19 "name": "sass-loader", 20 "escapedName": "sass-loader", 21 "rawSpec": "12.1.0", 22 "saveSpec": null, 23 "fetchSpec": "12.1.0" 13 24 }, 14 "main": "dist/cjs.js", 15 "engines": { 16 "node": ">= 12.13.0" 25 "_requiredBy": [ 26 "/@angular-devkit/build-angular" 27 ], 28 "_resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-12.1.0.tgz", 29 "_spec": "12.1.0", 30 "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front", 31 "author": { 32 "name": "J. Tangelder" 17 33 }, 18 "scripts": { 19 "start": "npm run build -- -w", 20 "clean": "del-cli dist", 21 "prebuild": "npm run clean", 22 "build": "cross-env NODE_ENV=production babel src -d dist --copy-files", 23 "commitlint": "commitlint --from=master", 24 "security": "npm audit --production", 25 "lint:prettier": "prettier --list-different .", 26 "lint:js": "eslint --cache .", 27 "lint": "npm-run-all -l -p \"lint:**\"", 28 "test:only": "cross-env NODE_ENV=test jest", 29 "test:watch": "npm run test:only -- --watch", 30 "test:manual": "npm run build && webpack-dev-server test/manual/src/index.js --open --config test/manual/webpack.config.js", 31 "test:coverage": "npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage", 32 "pretest": "npm run lint", 33 "test": "npm run test:coverage", 34 "prepare": "husky install && npm run build", 35 "release": "standard-version" 36 }, 37 "files": [ 38 "dist" 39 ], 40 "peerDependencies": { 41 "fibers": ">= 3.1.0", 42 "node-sass": "^4.0.0 || ^5.0.0 || ^6.0.0", 43 "sass": "^1.3.0", 44 "webpack": "^5.0.0" 45 }, 46 "peerDependenciesMeta": { 47 "node-sass": { 48 "optional": true 49 }, 50 "sass": { 51 "optional": true 52 }, 53 "fibers": { 54 "optional": true 55 } 34 "bugs": { 35 "url": "https://github.com/webpack-contrib/sass-loader/issues" 56 36 }, 57 37 "dependencies": { … … 59 39 "neo-async": "^2.6.2" 60 40 }, 41 "description": "Sass loader for webpack", 61 42 "devDependencies": { 62 43 "@babel/cli": "^7.14.5", … … 96 77 "webpack": "^5.38.1" 97 78 }, 79 "engines": { 80 "node": ">= 12.13.0" 81 }, 82 "files": [ 83 "dist" 84 ], 85 "funding": { 86 "type": "opencollective", 87 "url": "https://opencollective.com/webpack" 88 }, 89 "homepage": "https://github.com/webpack-contrib/sass-loader", 98 90 "keywords": [ 99 91 "sass", … … 101 93 "webpack", 102 94 "loader" 103 ] 95 ], 96 "license": "MIT", 97 "main": "dist/cjs.js", 98 "name": "sass-loader", 99 "peerDependencies": { 100 "fibers": ">= 3.1.0", 101 "node-sass": "^4.0.0 || ^5.0.0 || ^6.0.0", 102 "sass": "^1.3.0", 103 "webpack": "^5.0.0" 104 }, 105 "peerDependenciesMeta": { 106 "node-sass": { 107 "optional": true 108 }, 109 "sass": { 110 "optional": true 111 }, 112 "fibers": { 113 "optional": true 114 } 115 }, 116 "repository": { 117 "type": "git", 118 "url": "git+https://github.com/webpack-contrib/sass-loader.git" 119 }, 120 "scripts": { 121 "build": "cross-env NODE_ENV=production babel src -d dist --copy-files", 122 "clean": "del-cli dist", 123 "commitlint": "commitlint --from=master", 124 "lint": "npm-run-all -l -p \"lint:**\"", 125 "lint:js": "eslint --cache .", 126 "lint:prettier": "prettier --list-different .", 127 "prebuild": "npm run clean", 128 "prepare": "husky install && npm run build", 129 "pretest": "npm run lint", 130 "release": "standard-version", 131 "security": "npm audit --production", 132 "start": "npm run build -- -w", 133 "test": "npm run test:coverage", 134 "test:coverage": "npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage", 135 "test:manual": "npm run build && webpack-dev-server test/manual/src/index.js --open --config test/manual/webpack.config.js", 136 "test:only": "cross-env NODE_ENV=test jest", 137 "test:watch": "npm run test:only -- --watch" 138 }, 139 "version": "12.1.0" 104 140 }
Note:
See TracChangeset
for help on using the changeset viewer.