|
| 1 | +{ |
| 2 | + "name": "nunjucks-webpack-plugin", |
| 3 | + "version": "1.0.0", |
| 4 | + "description": "A webpack plugin for nunjucks", |
| 5 | + "keywords": [ |
| 6 | + "webpack", |
| 7 | + "webpack-plugin", |
| 8 | + "plugin", |
| 9 | + "nunjucks", |
| 10 | + "nunj", |
| 11 | + "template" |
| 12 | + ], |
| 13 | + "homepage": "https://github.com/itgalaxy/nunjucks-webpack-plugin", |
| 14 | + "bugs": { |
| 15 | + "url": "https://github.com/itgalaxy/nunjucks-webpack-plugin/issues" |
| 16 | + }, |
| 17 | + "license": "MIT", |
| 18 | + "author": "itgalaxy <development@itgalaxy.company>", |
| 19 | + "contributors": [ |
| 20 | + { |
| 21 | + "name": "Alexander Krasnoyarov", |
| 22 | + "email": "alexander.krasnoyarov@itgalaxy.company", |
| 23 | + "url": "https://vk.com/sterling_archer" |
| 24 | + } |
| 25 | + ], |
| 26 | + "repository": { |
| 27 | + "type": "https", |
| 28 | + "url": "https://github.com/itgalaxy/nunjucks-webpack-plugin" |
| 29 | + }, |
| 30 | + "main": "src/NunjucksWebpackPlugin.js", |
| 31 | + "files": [ |
| 32 | + "src", |
| 33 | + "!**/__tests__" |
| 34 | + ], |
| 35 | + "dependencies": {}, |
| 36 | + "devDependencies": { |
| 37 | + "ava": "0.19.0", |
| 38 | + "ajv-cli": "^1.1.0", |
| 39 | + "babel-core": "^6.24.0", |
| 40 | + "babel-polyfill": "^6.23.0", |
| 41 | + "babel-preset-es2015": "^6.24.0", |
| 42 | + "babel-preset-stage-0": "^6.22.0", |
| 43 | + "babel-register": "^6.24.0", |
| 44 | + "eslint": "^3.15.0", |
| 45 | + "eslint-plugin-ava": "^4.2.0", |
| 46 | + "eslint-plugin-import": "^2.2.0", |
| 47 | + "eslint-plugin-itgalaxy": "^45.0.0", |
| 48 | + "eslint-plugin-jsx-a11y": "^4.0.0", |
| 49 | + "eslint-plugin-lodash": "^2.4.0", |
| 50 | + "eslint-plugin-node": "^4.2.0", |
| 51 | + "eslint-plugin-promise": "^3.5.0", |
| 52 | + "eslint-plugin-react": "^6.10.0", |
| 53 | + "eslint-plugin-unicorn": "^2.1.0", |
| 54 | + "npmpub": "^3.1.0", |
| 55 | + "npm-run-all": "^4.0.0", |
| 56 | + "nyc": "^10.0.0", |
| 57 | + "nunjucks": "^3.0.0", |
| 58 | + "package-schema": "^1.0.0", |
| 59 | + "pify": "^2.3.0", |
| 60 | + "remark-cli": "^3.0.0", |
| 61 | + "remark-preset-lint-itgalaxy": "^6.0.0", |
| 62 | + "tempy": "^0.1.0", |
| 63 | + "webpack": "^2.2.1" |
| 64 | + }, |
| 65 | + "peerDependencies": { |
| 66 | + "nunjucks": "^3.0.0", |
| 67 | + "webpack": "^1.13.2 || ^2.2.1" |
| 68 | + }, |
| 69 | + "scripts": { |
| 70 | + "lint:eslint": "eslint . --cache --ignore-path .gitignore", |
| 71 | + "lint:package": "ajv -s ./node_modules/package-schema/schema.json -d package --errors=text", |
| 72 | + "lint:remark": "remark . -i .gitignore -f -q", |
| 73 | + "lint": "npm-run-all -l --parallel lint:*", |
| 74 | + |
| 75 | + "pretest": "npm run lint", |
| 76 | + "ava": "nyc ava --verbose \"src/**/__tests__/*.js\"", |
| 77 | + "test": "npm run ava", |
| 78 | + |
| 79 | + "release": "npmpub" |
| 80 | + }, |
| 81 | + "ava": { |
| 82 | + "require": [ |
| 83 | + "babel-register", |
| 84 | + "babel-polyfill" |
| 85 | + ], |
| 86 | + "concurrency": 5, |
| 87 | + "babel": "inherit" |
| 88 | + }, |
| 89 | + "babel": { |
| 90 | + "presets": [ |
| 91 | + "es2015", |
| 92 | + "stage-0" |
| 93 | + ] |
| 94 | + }, |
| 95 | + "eslintConfig": { |
| 96 | + "extends": [ |
| 97 | + "plugin:itgalaxy/ava", |
| 98 | + "plugin:itgalaxy/node", |
| 99 | + "plugin:itgalaxy/esnext" |
| 100 | + ], |
| 101 | + "root": true |
| 102 | + }, |
| 103 | + "remarkConfig": { |
| 104 | + "plugins": [ |
| 105 | + "remark-preset-lint-itgalaxy" |
| 106 | + ] |
| 107 | + } |
| 108 | +} |
0 commit comments