|
1 | 1 | {
|
2 |
| - "name": "raw-loader", |
3 |
| - "version": "0.5.1", |
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": "index.js", |
11 |
| - "engines": { |
12 |
| - "node": ">= 6.9.0" |
13 |
| - }, |
14 |
| - "scripts": { |
15 |
| - "commitlint": "commitlint", |
16 |
| - "commitmsg": "commitlint -e $GIT_PARAMS", |
17 |
| - "lint": "eslint --cache src test", |
18 |
| - "ci:lint:commits": "commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}", |
19 |
| - "lint-staged": "lint-staged", |
20 |
| - "release": "standard-version", |
21 |
| - "release:ci": "conventional-github-releaser -p angular", |
22 |
| - "release:validate": "commitlint --from=$(git describe --tags --abbrev=0) --to=$(git rev-parse HEAD)", |
23 |
| - "security": "nsp check", |
24 |
| - "test": "jest", |
25 |
| - "test:watch": "jest --watch", |
26 |
| - "test:coverage": "jest --collectCoverageFrom='src/**/*.js' --coverage", |
27 |
| - "ci:lint": "npm run lint && npm run security", |
28 |
| - "ci:test": "npm run test -- --runInBand", |
29 |
| - "ci:coverage": "npm run test:coverage -- --runInBand", |
30 |
| - "defaults": "webpack-defaults" |
31 |
| - }, |
32 |
| - "files": [ |
33 |
| - "index.js" |
34 |
| - ], |
35 |
| - "peerDependencies": { |
36 |
| - "webpack": "^4.3.0" |
37 |
| - }, |
38 |
| - "dependencies": { |
39 |
| - }, |
40 |
| - "devDependencies": { |
41 |
| - "@commitlint/cli": "^6.1.3", |
42 |
| - "@commitlint/config-angular": "^6.1.3", |
43 |
| - "@webpack-contrib/eslint-config-webpack": "^2.0.2", |
44 |
| - "babel-cli": "^6.26.0", |
45 |
| - "babel-jest": "^22.4.3", |
46 |
| - "babel-plugin-transform-object-rest-spread": "^6.26.0", |
47 |
| - "babel-polyfill": "^6.26.0", |
48 |
| - "babel-preset-env": "^1.6.1", |
49 |
| - "conventional-github-releaser": "^2.0.2", |
50 |
| - "cross-env": "^5.1.4", |
51 |
| - "del": "^3.0.0", |
52 |
| - "del-cli": "^1.1.0", |
53 |
| - "eslint": "^4.19.1", |
54 |
| - "eslint-plugin-import": "^2.9.0", |
55 |
| - "eslint-plugin-prettier": "^2.6.0", |
56 |
| - "husky": "^0.14.3", |
57 |
| - "jest": "^22.4.3", |
58 |
| - "lint-staged": "^7.0.0", |
59 |
| - "memory-fs": "^0.4.1", |
60 |
| - "nsp": "^3.2.1", |
61 |
| - "pre-commit": "^1.2.2", |
62 |
| - "prettier": "^1.11.1", |
63 |
| - "standard-version": "^4.3.0", |
64 |
| - "webpack": "^4.3.0", |
65 |
| - "webpack-defaults": "^2.1.1" |
66 |
| - }, |
67 |
| - "pre-commit": "lint-staged", |
68 |
| - "lint-staged": { |
69 |
| - "*.js": [ |
70 |
| - "eslint --fix", |
71 |
| - "git add" |
72 |
| - ] |
73 |
| - } |
| 2 | + "name": "raw-loader", |
| 3 | + "version": "0.5.1", |
| 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": "index.js", |
| 11 | + "engines": { |
| 12 | + "node": ">= 6.9.0" |
| 13 | + }, |
| 14 | + "scripts": { |
| 15 | + "lint": "eslint --cache 'index.js' test", |
| 16 | + "release": "standard-version", |
| 17 | + "security": "npm audit", |
| 18 | + "test": "jest", |
| 19 | + "test:watch": "jest --watch", |
| 20 | + "test:coverage": "jest --collectCoverageFrom='index.js' --coverage", |
| 21 | + "ci:lint": "npm run lint && npm run security", |
| 22 | + "ci:lint:commits": "commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}", |
| 23 | + "ci:test": "npm run test -- --runInBand", |
| 24 | + "ci:coverage": "npm run test:coverage -- --runInBand", |
| 25 | + "defaults": "webpack-defaults" |
| 26 | + }, |
| 27 | + "files": [ |
| 28 | + "index.js", |
| 29 | + "options.json" |
| 30 | + ], |
| 31 | + "peerDependencies": { |
| 32 | + "webpack": "^4.3.0" |
| 33 | + }, |
| 34 | + "dependencies": { |
| 35 | + "loader-utils": "^1.1.0", |
| 36 | + "schema-utils": "^1.0.0" |
| 37 | + }, |
| 38 | + "devDependencies": { |
| 39 | + "@babel/cli": "^7.1.5", |
| 40 | + "@babel/core": "^7.1.6", |
| 41 | + "@babel/polyfill": "^7.0.0", |
| 42 | + "@babel/preset-env": "^7.1.6", |
| 43 | + "@commitlint/cli": "^7.1.6", |
| 44 | + "@commitlint/config-conventional": "^7.1.2", |
| 45 | + "@webpack-contrib/eslint-config-webpack": "^3.0.0", |
| 46 | + "babel-core": "^7.0.0-bridge.0", |
| 47 | + "babel-jest": "^23.6.0", |
| 48 | + "cross-env": "^5.2.0", |
| 49 | + "del": "^3.0.0", |
| 50 | + "del-cli": "^1.1.0", |
| 51 | + "eslint": "^5.10.0", |
| 52 | + "eslint-plugin-import": "^2.14.0", |
| 53 | + "eslint-plugin-prettier": "^3.0.0", |
| 54 | + "husky": "^1.2.0", |
| 55 | + "jest": "^23.6.0", |
| 56 | + "lint-staged": "^8.1.0", |
| 57 | + "memory-fs": "^0.4.1", |
| 58 | + "prettier": "^1.11.1", |
| 59 | + "standard-version": "^4.3.0", |
| 60 | + "webpack": "^4.3.0", |
| 61 | + "webpack-defaults": "^2.1.1" |
| 62 | + }, |
| 63 | + "babel": { |
| 64 | + "presets": [ |
| 65 | + [ |
| 66 | + "@babel/preset-env", |
| 67 | + { |
| 68 | + "targets": { |
| 69 | + "node": "6.9.0" |
| 70 | + }, |
| 71 | + "useBuiltIns": "usage" |
| 72 | + } |
| 73 | + ] |
| 74 | + ] |
| 75 | + }, |
| 76 | + "husky": { |
| 77 | + "hooks": { |
| 78 | + "pre-commit": "lint-staged" |
| 79 | + } |
| 80 | + }, |
| 81 | + "lint-staged": { |
| 82 | + "*.js": [ |
| 83 | + "eslint --fix", |
| 84 | + "git add" |
| 85 | + ] |
| 86 | + }, |
| 87 | + "commitlint": { |
| 88 | + "extends": [ |
| 89 | + "@commitlint/config-conventional" |
| 90 | + ] |
| 91 | + } |
74 | 92 | }
|
0 commit comments