|
| 1 | +{ |
| 2 | + "name": "hast-util-script-supporting", |
| 3 | + "version": "0.0.0", |
| 4 | + "description": "Check if a node is a script-supporting element", |
| 5 | + "license": "MIT", |
| 6 | + "keywords": [ |
| 7 | + "hast", |
| 8 | + "html", |
| 9 | + "category", |
| 10 | + "script", |
| 11 | + "supporting", |
| 12 | + "util", |
| 13 | + "utility" |
| 14 | + ], |
| 15 | + "dependencies": { |
| 16 | + "hast-util-is-element": "^1.0.0" |
| 17 | + }, |
| 18 | + "files": [ |
| 19 | + "index.js" |
| 20 | + ], |
| 21 | + "repository": { |
| 22 | + "type": "git", |
| 23 | + "url": "https://github.com/wooorm/hast-util-script-supporting.git" |
| 24 | + }, |
| 25 | + "bugs": "https://github.com/wooorm/hast-util-script-supporting/issues", |
| 26 | + "author": "Titus Wormer <[email protected]> (http://wooorm.com)", |
| 27 | + "contributors": [ |
| 28 | + "Titus Wormer <[email protected]> (http://wooorm.com)" |
| 29 | + ], |
| 30 | + "devDependencies": { |
| 31 | + "browserify": "^13.0.0", |
| 32 | + "eslint": "^2.0.0", |
| 33 | + "esmangle": "^1.0.1", |
| 34 | + "istanbul": "^0.4.0", |
| 35 | + "jscs": "^3.0.0", |
| 36 | + "jscs-jsdoc": "^2.0.0", |
| 37 | + "remark": "^4.0.0", |
| 38 | + "remark-comment-config": "^3.0.0", |
| 39 | + "remark-github": "^4.0.1", |
| 40 | + "remark-lint": "^3.0.0", |
| 41 | + "remark-usage": "^3.0.0", |
| 42 | + "remark-validate-links": "^3.0.0", |
| 43 | + "tape": "^4.4.0" |
| 44 | + }, |
| 45 | + "scripts": { |
| 46 | + "build-md": "remark . --quiet --frail", |
| 47 | + "build-bundle": "browserify index.js --bare -s hastUtilScriptSupporting > hast-util-script-supporting.js", |
| 48 | + "build-mangle": "esmangle hast-util-script-supporting.js > hast-util-script-supporting.min.js", |
| 49 | + "build": "npm run build-md && npm run build-bundle && npm run build-mangle", |
| 50 | + "lint-api": "eslint .", |
| 51 | + "lint-style": "jscs --reporter inline .", |
| 52 | + "lint": "npm run lint-api && npm run lint-style", |
| 53 | + "test-api": "node test.js", |
| 54 | + "test-coverage": "istanbul cover test.js", |
| 55 | + "test": "npm run build && npm run lint && npm run test-coverage" |
| 56 | + } |
| 57 | +} |
0 commit comments