Skip to content

Commit 09970f1

Browse files
chore(package): update dependencies
1 parent e05b44c commit 09970f1

File tree

1 file changed

+29
-49
lines changed

1 file changed

+29
-49
lines changed

package.json

Lines changed: 29 additions & 49 deletions
Original file line numberDiff line numberDiff line change
@@ -2,74 +2,54 @@
22
"name": "posthtml-loader",
33
"description": "PostHTML for Webpack",
44
"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"
188
},
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"
2219
},
2320
"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"
2625
},
2726
"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"
4436
},
4537
"keywords": [
4638
"HTML",
4739
"Loader",
4840
"PostHTML",
4941
"Webpack"
5042
],
51-
"author": {
52-
"name": "Michael Ciniawky",
53-
"email": "michael.ciniawsky@gmail.com"
54-
},
43+
"author": "Michael Ciniawsky <michael.ciniawsky@gmail.com> (@michael-ciniawsky)",
5544
"contributors": [
56-
{
57-
"name": "Jeff Escalante",
58-
"email": "gh.je@mailhero.io"
59-
},
6045
{
6146
"name": "Ivan Demidov",
6247
"email": "Scrum@list.ru",
6348
"url": "https://twitter.com/Scrum_"
6449
}
6550
],
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",
7353
"homepage": "https://github.com/posthtml/posthtml-loader",
7454
"license": "MIT"
7555
}

0 commit comments

Comments
 (0)