UNPKG

@connectv/marked

Version:
74 lines (73 loc) 1.92 kB
{ "name": "@connectv/marked", "version": "0.2.4", "description": "component-based markdown renderer", "main": "dist/es5/index.js", "module": "dist/es6/index.js", "types": "dist/es6/index.d.ts", "sideEffects": false, "files": [ "dist/es6", "dist/es5" ], "scripts": { "start": "ts-node samples", "test": "ts-node --project conf/typescript/test.json test.ts", "build-es5": "tsc -p conf/typescript/es5.json", "build-es6": "tsc -p conf/typescript/es6.json", "build": "npm run build-es5 && npm run build-es6", "cov:view": "nyc npm run test && npm run cov:clean", "cov:travis": "nyc npm run test && npx codecov", "cov:clean": "rm -fr ./.nyc_output && rm -fr ./coverage" }, "repository": { "type": "git", "url": "git+https://github.com/CONNECT-platform/marked.git" }, "keywords": [ "markdown", "components", "connective" ], "author": "Eugene Ghanizadeh Khoub <ghanizadeh.eugene@gmail.com>", "license": "MIT", "bugs": { "url": "https://github.com/CONNECT-platform/marked/issues" }, "homepage": "https://github.com/CONNECT-platform/marked#readme", "dependencies": { "@connectv/html": "^0.2.5", "@types/marked": "^0.7.3", "marked": "^0.8.0" }, "devDependencies": { "@istanbuljs/nyc-config-typescript": "^1.0.1", "@types/chai": "^4.2.11", "@types/jsdom": "^16.1.0", "@types/jsdom-global": "^3.0.2", "@types/mocha": "^7.0.2", "chai": "^4.2.0", "jsdom": "^16.2.1", "jsdom-global": "^3.0.2", "mocha": "^7.1.2", "mutation-observer": "^1.0.3", "nyc": "^15.0.1", "ts-node": "^8.6.2", "typescript": "^3.8.3" }, "nyc": { "extends": "@istanbuljs/nyc-config-typescript", "all": true, "include": [ "src/**/*.tsx", "src/**/*.ts" ], "exclude": [ "src/**/test/*" ], "reporter": [ "text", "lcov" ] } }