property-information
Version:
Information for HTML properties
97 lines (96 loc) • 2.56 kB
JSON
{
"name": "property-information",
"version": "5.1.0",
"description": "Information for HTML properties",
"license": "MIT",
"keywords": [
"html",
"property",
"attribute",
"information",
"info"
],
"repository": "wooorm/property-information",
"bugs": "https://github.com/wooorm/property-information/issues",
"author": "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)",
"contributors": [
"Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)",
"Dustin Deus <deusdustin@gmail.com> (http://starptech.de)"
],
"files": [
"index.js",
"html.js",
"svg.js",
"normalize.js",
"find.js",
"lib/"
],
"dependencies": {
"xtend": "^4.0.1"
},
"devDependencies": {
"alpha-sort": "^3.0.0",
"arr-union": "^3.1.0",
"bail": "^1.0.3",
"browserify": "^16.0.0",
"concat-stream": "^2.0.0",
"html-element-attributes": "^2.0.0",
"mdast-util-to-string": "^1.0.4",
"mdast-zone": "^3.0.1",
"nyc": "^14.0.0",
"object.values": "^1.0.4",
"prettier": "^1.15.1",
"remark-cli": "^6.0.0",
"remark-frontmatter": "^1.2.0",
"remark-parse": "^6.0.0",
"remark-preset-wooorm": "^4.0.0",
"svg-element-attributes": "^1.2.1",
"tape": "^4.2.0",
"tinyify": "^2.4.3",
"unified": "^7.0.0",
"unist-builder": "^1.0.2",
"unist-util-visit": "^1.3.1",
"xo": "^0.24.0"
},
"scripts": {
"generate": "node script/generate-react",
"format": "remark . -qfo && prettier --write \"**/*.js\" && xo --fix",
"build-bundle": "browserify index.js -s propertyInformation > property-information.js",
"build-mangle": "browserify index.js -s propertyInformation -p tinyify > property-information.min.js",
"build": "npm run build-bundle && npm run build-mangle",
"test-api": "node test",
"test-coverage": "nyc --reporter lcov tape test.js",
"test": "npm run generate && npm run format && npm run build && npm run test-coverage"
},
"nyc": {
"check-coverage": true,
"lines": 100,
"functions": 100,
"branches": 100
},
"prettier": {
"tabWidth": 2,
"useTabs": false,
"singleQuote": true,
"bracketSpacing": false,
"semi": false,
"trailingComma": "none"
},
"xo": {
"prettier": true,
"esnext": false,
"rules": {
"guard-for-in": "off",
"unicorn/prefer-exponentiation-operator": "off"
},
"ignore": [
"property-information.js"
]
},
"remarkConfig": {
"plugins": [
"./script/list",
"preset-wooorm"
]
}
}