54 lines
1.3 KiB
JSON
54 lines
1.3 KiB
JSON
{
|
|
"name": "@emmetio/abbreviation",
|
|
"version": "2.3.3",
|
|
"description": "Emmet standalone abbreviation parser",
|
|
"main": "./dist/index.cjs",
|
|
"module": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"type": "module",
|
|
"exports": {
|
|
"import": "./dist/index.js",
|
|
"require": "./dist/index.cjs"
|
|
},
|
|
"scripts": {
|
|
"test": "mocha",
|
|
"build": "rollup -c",
|
|
"clean": "rimraf ./dist",
|
|
"prepublishOnly": "npm run clean && npm run build && npm test"
|
|
},
|
|
"keywords": [
|
|
"emmet",
|
|
"abbreviation"
|
|
],
|
|
"author": "Sergey Chikuyonok <serge.che@gmail.com>",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@emmetio/scanner": "^1.0.4"
|
|
},
|
|
"devDependencies": {
|
|
"@rollup/plugin-typescript": "^10.0.1",
|
|
"@types/mocha": "^10.0.1",
|
|
"@types/node": "^18.11.18",
|
|
"mocha": "^10.2.0",
|
|
"rimraf": "^5.0.0",
|
|
"rollup": "^3.9.0",
|
|
"ts-node": "^10.9.1",
|
|
"typescript": "^4.9.4"
|
|
},
|
|
"directories": {
|
|
"test": "test"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/emmetio/emmet.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/emmetio/emmet/issues"
|
|
},
|
|
"homepage": "https://github.com/emmetio/emmet#readme",
|
|
"mocha": {
|
|
"loader": "ts-node/esm",
|
|
"spec": "./test/*.ts"
|
|
},
|
|
"gitHead": "fce2127ece65adbb293a40aa0577e4558658c559"
|
|
}
|