UNPKG

hexo-reslink

Version:

Automatically create resource links

62 lines (61 loc) 1.41 kB
{ "name": "hexo-reslink", "version": "1.1.3", "description": "Automatically create resource links", "main": "index.js", "scripts": { "clean": "rm -rf dist", "tsc": "tsc", "build": "npm run tsc", "pretest": "npm run clean&&npm run build&&cp -r test dist", "test-spec": "mocha", "test-cov": "nyc npm run test-spec && nyc report", "test": "npm run test-cov", "report-coverage": "cat ./coverage/lcov.info | coveralls" }, "files": [ "dist/lib", "lib", "README.md", "LICENSE", "tsconfig.json" ], "repository": { "type": "git", "url": "git+https://github.com/Arylo/hexo-reslink.git" }, "keywords": [ "arylo", "hexo", "hexo-filter" ], "author": "AryloYeung <arylo.open@gmail.com>", "license": "MIT", "bugs": { "url": "https://github.com/Arylo/hexo-reslink/issues" }, "homepage": "https://github.com/Arylo/hexo-reslink#readme", "devDependencies": { "@types/faker": "^4.1.2", "@types/mocha": "^2.2.45", "@types/should": "^11.2.0", "faker": "^4.1.0", "mocha": "^4.0.1", "nyc": "^11.4.1", "should": "^12.0.0", "source-map-support": "^0.5.0", "tslint": "^5.8.0", "typescript": "^2.6.2" }, "nyc": { "report-dir": "./coverage", "reporter": [ "clover", "cobertura", "lcov" ] }, "dependencies": { "markdown-to-ast": "6.0.2" } }