|
2 | 2 | "name": "posthtml-loader",
|
3 | 3 | "description": "PostHTML for Webpack",
|
4 | 4 | "version": "0.11.0",
|
5 |
| - "main": "lib", |
6 |
| - "engine": ">=4", |
7 |
| - "scripts": { |
8 |
| - "pretest": "npm run unbuild && standard", |
9 |
| - "test": "npm run build && ava && npm run unbuild", |
10 |
| - "build": "mkdir -p src && babel lib -d src", |
11 |
| - "unbuild": "rm -f src/index.js", |
12 |
| - "coveralls": "nyc report --reporter=text-lcov | coveralls", |
13 |
| - "commitmsg": "conventional-changelog-lint -p angular -e", |
14 |
| - "precommit": "npm run lint", |
15 |
| - "release-major": "mversion major", |
16 |
| - "release-minor": "mversion minor", |
17 |
| - "release-patch": "mversion patch" |
| 5 | + "main": "index.js", |
| 6 | + "engines": { |
| 7 | + "node": ">= 4" |
18 | 8 | },
|
19 |
| - "ava": { |
20 |
| - "verbose": "true", |
21 |
| - "serial": "true" |
| 9 | + "files": [ |
| 10 | + "lib" |
| 11 | + ], |
| 12 | + "scripts": { |
| 13 | + "lint": "standard --env jest", |
| 14 | + "clean": "rm -rf jest coverage jsdoc-api dmd test/builds", |
| 15 | + "pretest": "npm run clean", |
| 16 | + "test": "jest --verbose --coverage", |
| 17 | + "docs": "jsdoc2md lib/index.js > LOADER.md", |
| 18 | + "release": "standard-version" |
22 | 19 | },
|
23 | 20 | "dependencies": {
|
24 |
| - "loader-utils": "^0.2.12", |
25 |
| - "posthtml": "^0.9.1" |
| 21 | + "loader-utils": "^1.1.0", |
| 22 | + "posthtml": "^0.11.0", |
| 23 | + "posthtml-load-config": "^1.0.0", |
| 24 | + "schema-utils": "^0.4.3" |
26 | 25 | },
|
27 | 26 | "devDependencies": {
|
28 |
| - "ava": "^0.16.0", |
29 |
| - "babel-cli": "^6.18.0", |
30 |
| - "babel-preset-es2015": "^6.18.0", |
31 |
| - "babel-preset-stage-2": "^6.18.0", |
32 |
| - "conventional-changelog": "^1.1.0", |
33 |
| - "conventional-changelog-lint": "^1.0.0", |
34 |
| - "coveralls": "^2.11.15", |
35 |
| - "husky": "^0.11.5", |
36 |
| - "nyc": "^9.0.1", |
37 |
| - "posthtml-custom-elements": "^1.0.3", |
38 |
| - "posthtml-exp": "^0.9.0", |
39 |
| - "source-loader": "^0.2.0", |
40 |
| - "standard": "^8.4.0", |
41 |
| - "sugarml": "0.1.0", |
42 |
| - "webpack": "^1.13.3", |
43 |
| - "when": "^3.7.7" |
| 27 | + "coveralls": "^2.0.0", |
| 28 | + "del": "^3.0.0", |
| 29 | + "jest": "^21.0.0", |
| 30 | + "jsdoc-to-markdown": "^3.0.0", |
| 31 | + "memory-fs": "^0.4.0", |
| 32 | + "posthtml-sugarml": "1.0.0-alpha3", |
| 33 | + "standard": "^10.0.0", |
| 34 | + "standard-version": "^4.0.0", |
| 35 | + "webpack": "^3.0.0" |
44 | 36 | },
|
45 | 37 | "keywords": [
|
46 | 38 | "HTML",
|
47 | 39 | "Loader",
|
48 | 40 | "PostHTML",
|
49 | 41 | "Webpack"
|
50 | 42 | ],
|
51 |
| - "author": { |
52 |
| - "name": "Michael Ciniawky", |
53 |
| - "email": "michael.ciniawsky@gmail.com" |
54 |
| - }, |
| 43 | + "author": "Michael Ciniawsky <michael.ciniawsky@gmail.com> (@michael-ciniawsky)", |
55 | 44 | "contributors": [
|
56 |
| - { |
57 |
| - "name": "Jeff Escalante", |
58 |
| - "email": "gh.je@mailhero.io" |
59 |
| - }, |
60 | 45 | {
|
61 | 46 | "name": "Ivan Demidov",
|
62 | 47 | "email": "Scrum@list.ru",
|
63 | 48 | "url": "https://twitter.com/Scrum_"
|
64 | 49 | }
|
65 | 50 | ],
|
66 |
| - "repository": { |
67 |
| - "type": "git", |
68 |
| - "url": "https://github.com/posthtml/posthtml-loader.git" |
69 |
| - }, |
70 |
| - "bugs": { |
71 |
| - "url": "https://github.com/posthtml/posthtml-loader/issues" |
72 |
| - }, |
| 51 | + "repository": "https://github.com/posthtml/posthtml-loader.git", |
| 52 | + "bugs": "https://github.com/posthtml/posthtml-loader/issues", |
73 | 53 | "homepage": "https://github.com/posthtml/posthtml-loader",
|
74 | 54 | "license": "MIT"
|
75 | 55 | }
|
0 commit comments