|
1 | 1 | { |
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" |
11 | 14 | }, |
12 | 15 | "dependencies": { |
13 | 16 | "fclone": "^1.0.10" |
14 | 17 | }, |
15 | 18 | "devDependencies": { |
16 | 19 | "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" |
22 | 26 | }, |
23 | | - "engines": { |
24 | | - "node": ">=4" |
| 27 | + "ava": { |
| 28 | + "verbose": "true" |
| 29 | + }, |
| 30 | + "nyc": { |
| 31 | + "all": true, |
| 32 | + "include": ["lib"], |
| 33 | + "extension": [".js"] |
25 | 34 | }, |
26 | | - "homepage": "https://github.com/posthtml/posthtml-expressions", |
27 | 35 | "keywords": [ |
28 | 36 | "expressions", |
29 | 37 | "posthtml", |
30 | 38 | "posthtmlplugin" |
31 | 39 | ], |
32 | | - "license": "MIT", |
33 | | - "main": "lib", |
| 40 | + "author": { |
| 41 | + "name": "Jeff Escalante", |
| 42 | + |
| 43 | + }, |
| 44 | + "contributors": [ |
| 45 | + { |
| 46 | + "name": "Michael Ciniawsky", |
| 47 | + |
| 48 | + }, |
| 49 | + { |
| 50 | + "name": "Denis Malinochkin", |
| 51 | + |
| 52 | + } |
| 53 | + ], |
34 | 54 | "repository": { |
35 | 55 | "type": "git", |
36 | | - "url": "https:/github.com/posthtml/posthtml-expressions" |
| 56 | + "url": "https://github.com/posthtml/posthtml-expressions" |
37 | 57 | }, |
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" |
43 | 63 | } |
0 commit comments