Files
30-seconds-of-code/node_modules/detab/package.json
2019-08-20 15:52:05 +02:00

104 lines
2.5 KiB
JSON

{
"_from": "detab@^2.0.0",
"_id": "detab@2.0.2",
"_inBundle": false,
"_integrity": "sha512-Q57yPrxScy816TTE1P/uLRXLDKjXhvYTbfxS/e6lPD+YrqghbsMlGB9nQzj/zVtSPaF0DFPSdO916EWO4sQUyQ==",
"_location": "/detab",
"_phantomChildren": {},
"_requested": {
"type": "range",
"registry": true,
"raw": "detab@^2.0.0",
"name": "detab",
"escapedName": "detab",
"rawSpec": "^2.0.0",
"saveSpec": null,
"fetchSpec": "^2.0.0"
},
"_requiredBy": [
"/mdast-util-to-hast"
],
"_resolved": "https://registry.npmjs.org/detab/-/detab-2.0.2.tgz",
"_shasum": "074970d1a807b045d0258a4235df5928dd683561",
"_spec": "detab@^2.0.0",
"_where": "/Users/stefanfejes/Projects/30-seconds-of-python-code/node_modules/mdast-util-to-hast",
"author": {
"name": "Titus Wormer",
"email": "tituswormer@gmail.com",
"url": "https://wooorm.com"
},
"bugs": {
"url": "https://github.com/wooorm/detab/issues"
},
"bundleDependencies": false,
"contributors": [
{
"name": "Titus Wormer",
"email": "tituswormer@gmail.com",
"url": "https://wooorm.com"
}
],
"dependencies": {
"repeat-string": "^1.5.4"
},
"deprecated": false,
"description": "Detab: tabs -> spaces",
"devDependencies": {
"browserify": "^16.0.0",
"nyc": "^14.0.0",
"prettier": "^1.12.1",
"remark-cli": "^6.0.0",
"remark-preset-wooorm": "^4.0.0",
"tape": "^4.0.0",
"tinyify": "^2.5.0",
"xo": "^0.24.0"
},
"files": [
"index.js"
],
"homepage": "https://github.com/wooorm/detab#readme",
"keywords": [
"detab",
"tab",
"space",
"tab-size",
"size"
],
"license": "MIT",
"name": "detab",
"prettier": {
"tabWidth": 2,
"useTabs": false,
"singleQuote": true,
"bracketSpacing": false,
"semi": false,
"trailingComma": "none"
},
"remarkConfig": {
"plugins": [
"preset-wooorm"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/wooorm/detab.git"
},
"scripts": {
"build": "npm run build-bundle && npm run build-mangle",
"build-bundle": "browserify . -s detab -o detab.js",
"build-mangle": "browserify . -s detab -p tinyify -o detab.min.js",
"format": "remark . -qfo && prettier --write \"**/*.js\" && xo --fix",
"test": "npm run format && npm run build && npm run test-coverage",
"test-api": "node test",
"test-coverage": "nyc --reporter lcov tape test.js"
},
"version": "2.0.2",
"xo": {
"prettier": true,
"esnext": false,
"ignores": [
"detab.js"
]
}
}