Skip to content

Commit 7544694

Browse files
chore(release): update scripts
1 parent 6b4781d commit 7544694

File tree

1 file changed

+45
-25
lines changed

1 file changed

+45
-25
lines changed

package.json

Lines changed: 45 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,43 +1,63 @@
11
{
2-
"name": "posthtml-exp",
3-
"description": "Local variables, expressions, loops, and conditionals for posthtml",
4-
"version": "0.9.0",
5-
"author": "Jeff Escalante",
6-
"ava": {
7-
"verbose": "true"
8-
},
9-
"bugs": {
10-
"url": "https://github.com/posthtml/posthtml-expressions/issues"
2+
"name": "posthtml-expressions",
3+
"version": "1.0.0",
4+
"description": "Expressions Plugin for PostHTML",
5+
"engines": { "npm": ">=3", "node": ">=4" },
6+
"main":"lib",
7+
"scripts": {
8+
"lint": "standard",
9+
"test": "nyc ava test/index.js",
10+
"logs": "standard-changelog > CHANGELOG.md",
11+
"docs": "jsdoc2md lib/*.js > INDEX.md",
12+
"clean": "rm -rf .nyc_output coverage jsdoc-api dmd",
13+
"start": "sudo npm run clean && npm run lint && sudo npm test"
1114
},
1215
"dependencies": {
1316
"fclone": "^1.0.10"
1417
},
1518
"devDependencies": {
1619
"ava": "^0.17.0",
17-
"coveralls": "^2.11.14",
18-
"nyc": "^8.3.0",
19-
"posthtml": "^0.9.0",
20-
"snazzy": "^5.0.0",
21-
"standard": "^8.2.0"
20+
"coveralls": "^2.11.15",
21+
"jsdoc-to-markdown": "^2.0.0",
22+
"nyc": "^9.0.1",
23+
"posthtml": "^0.9.1",
24+
"standard": "^8.4.0",
25+
"standard-changelog": "^0.0.1"
2226
},
23-
"engines": {
24-
"node": ">=4"
27+
"ava": {
28+
"verbose": "true"
29+
},
30+
"nyc": {
31+
"all": true,
32+
"include": ["lib"],
33+
"extension": [".js"]
2534
},
26-
"homepage": "https://github.com/posthtml/posthtml-expressions",
2735
"keywords": [
2836
"expressions",
2937
"posthtml",
3038
"posthtmlplugin"
3139
],
32-
"license": "MIT",
33-
"main": "lib",
40+
"author": {
41+
"name": "Jeff Escalante",
42+
"email": "[email protected]"
43+
},
44+
"contributors": [
45+
{
46+
"name": "Michael Ciniawsky",
47+
"email": "[email protected]"
48+
},
49+
{
50+
"name": "Denis Malinochkin",
51+
"email": "[email protected]"
52+
}
53+
],
3454
"repository": {
3555
"type": "git",
36-
"url": "https:/github.com/posthtml/posthtml-expressions"
56+
"url": "https://github.com/posthtml/posthtml-expressions"
3757
},
38-
"scripts": {
39-
"test": "ava",
40-
"coverage": "nyc --reporter=html ava && open coverage/index.html",
41-
"coveralls": "nyc --reporter=lcov ava && cat ./coverage/lcov.info | coveralls"
42-
}
58+
"bugs": {
59+
"url": "https://github.com/posthtml/posthtml-expressions/issues"
60+
},
61+
"homepage": "https://github.com/posthtml/posthtml-expressions",
62+
"license": "MIT"
4363
}

0 commit comments

Comments
 (0)