UNPKG

2.35 kBJSONView Raw
1{
2 "name": "raw-loader",
3 "version": "3.0.0",
4 "description": "A loader for webpack that allows importing files as a String",
5 "license": "MIT",
6 "repository": "webpack-contrib/raw-loader",
7 "author": "Tobias Koppers @sokra",
8 "homepage": "https://github.com/webpack-contrib/raw-loader",
9 "bugs": "https://github.com/webpack-contrib/raw-loader/issues",
10 "main": "dist/cjs.js",
11 "engines": {
12 "node": ">= 8.9.0"
13 },
14 "scripts": {
15 "start": "npm run build -- -w",
16 "prebuild": "npm run clean",
17 "build": "cross-env NODE_ENV=production babel src -d dist --ignore \"src/**/*.test.js\" --copy-files",
18 "clean": "del-cli dist",
19 "commitlint": "commitlint --from=master",
20 "lint:prettier": "prettier \"{**/*,*}.{js,json,md,yml,css}\" --list-different",
21 "lint:js": "eslint --cache src test",
22 "lint": "npm-run-all -l -p \"lint:**\"",
23 "prepare": "npm run build",
24 "release": "standard-version",
25 "security": "npm audit",
26 "test:only": "cross-env NODE_ENV=test jest",
27 "test:watch": "cross-env NODE_ENV=test jest --watch",
28 "test:coverage": "cross-env NODE_ENV=test jest --collectCoverageFrom=\"src/**/*.js\" --coverage",
29 "pretest": "npm run lint",
30 "test": "cross-env NODE_ENV=test npm run test:coverage",
31 "defaults": "webpack-defaults"
32 },
33 "files": [
34 "dist/"
35 ],
36 "peerDependencies": {
37 "webpack": "^4.3.0"
38 },
39 "dependencies": {
40 "loader-utils": "^1.1.0",
41 "schema-utils": "^1.0.0"
42 },
43 "devDependencies": {
44 "@babel/cli": "^7.1.5",
45 "@babel/core": "^7.1.6",
46 "@babel/preset-env": "^7.1.6",
47 "@commitlint/cli": "^8.0.0",
48 "@commitlint/config-conventional": "^8.0.0",
49 "@webpack-contrib/defaults": "^5.0.0",
50 "@webpack-contrib/eslint-config-webpack": "^3.0.0",
51 "babel-jest": "^24.5.0",
52 "commitlint-azure-pipelines-cli": "^1.0.2",
53 "cross-env": "^5.2.0",
54 "del": "^4.0.0",
55 "del-cli": "^2.0.0",
56 "eslint": "^5.10.0",
57 "eslint-config-prettier": "^4.3.0",
58 "eslint-plugin-import": "^2.14.0",
59 "eslint-plugin-prettier": "^3.0.0",
60 "husky": "^2.3.0",
61 "jest": "^24.5.0",
62 "jest-junit": "^6.4.0",
63 "lint-staged": "^8.1.0",
64 "memory-fs": "^0.4.1",
65 "npm-run-all": "^4.1.5",
66 "prettier": "^1.11.1",
67 "standard-version": "^6.0.1",
68 "webpack": "^4.3.0"
69 },
70 "keywords": [
71 "webpack"
72 ]
73}