48 lines
1.2 KiB
JSON
48 lines
1.2 KiB
JSON
{
|
|
"name": "@emmetio/html-matcher",
|
|
"version": "1.3.0",
|
|
"description": "Minimalistic and ultra-fast HTML parser & matcher",
|
|
"main": "./dist/html-matcher.cjs.js",
|
|
"module": "./dist/html-matcher.es.js",
|
|
"types": "./dist/index.d.ts",
|
|
"dependencies": {
|
|
"@emmetio/scanner": "^1.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/mocha": "^7.0.2",
|
|
"@types/node": "^12.7.5",
|
|
"mocha": "^7.1.1",
|
|
"rollup": "^2.6.0",
|
|
"rollup-plugin-node-resolve": "^5.2.0",
|
|
"rollup-plugin-typescript2": "^0.27.0",
|
|
"ts-node": "^8.8.2",
|
|
"tslint": "^6.1.1",
|
|
"typescript": "^3.8.3"
|
|
},
|
|
"scripts": {
|
|
"test": "mocha",
|
|
"lint": "tslint ./src/*.ts",
|
|
"build": "rollup -c",
|
|
"clean": "rm -rf ./dist",
|
|
"prepare": "npm run lint && npm test && npm run clean && npm run build"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/emmetio/html-matcher.git"
|
|
},
|
|
"keywords": [],
|
|
"author": "Sergey Chikuyonok <serge.che@gmail.com>",
|
|
"license": "ISC",
|
|
"bugs": {
|
|
"url": "https://github.com/emmetio/html-matcher/issues"
|
|
},
|
|
"homepage": "https://github.com/emmetio/html-matcher#readme",
|
|
"directories": {
|
|
"test": "test"
|
|
},
|
|
"mocha": {
|
|
"require": "ts-node/register",
|
|
"spec": "./test/*.ts"
|
|
}
|
|
}
|