You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
snabbdom/package.json

112 lines
3.3 KiB
JSON

10 years ago
{
"name": "snabbdom",
"version": "2.1.0",
10 years ago
"description": "A virtual DOM library with focus on simplicity, modularity, powerful features and performance.",
"main": "build/snabbdom.cjs.js",
"module": "build/index.js",
10 years ago
"devDependencies": {
"@babel/core": "7.12.16",
"@babel/preset-env": "7.12.16",
"@commitlint/cli": "11.0.0",
"@commitlint/config-conventional": "11.0.0",
"@commitlint/travis-cli": "11.0.0",
"@types/chai": "4.2.12",
"@types/faker": "5.1.6",
"@types/lodash.shuffle": "4.2.6",
"@types/mathjs": "6.0.5",
"@types/mocha": "8.0.3",
"@typescript-eslint/eslint-plugin": "4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"benchmark": "2.1.4",
"chai": "4.2.0",
"chalk": "4.1.0",
"core-js": "3.8.3",
"cross-env": "7.0.3",
"editorconfig-checker": "3.2.0",
"eslint": "7.20.0",
"eslint-config-prettier": "^7.2.0",
"eslint-config-standard-with-typescript": "20.0.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-markdown": "2.0.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.3.1",
"faker": "5.4.0",
"globby": "11.0.2",
"husky": "5.0.9",
"is-path-inside": "3.0.2",
"karma": "6.1.1",
"karma-browserstack-launcher": "1.6.0",
"karma-chrome-launcher": "3.1.0",
"karma-firefox-launcher": "2.1.0",
"karma-mocha": "2.0.1",
"karma-mocha-reporter": "2.2.5",
"karma-typescript": "^5.4.0",
"latest-snabbdom-release": "npm:snabbdom@2.1.0",
"lodash.shuffle": "4.2.0",
"mathjs": "9.2.0",
"mocha": "8.1.3",
"npm-run-all": "4.1.5",
"p-map-series": "2.1.0",
"p-reduce": "2.1.0",
"pinst": "2.1.4",
"prettier": "^2.2.1",
"regenerator-runtime": "0.13.7",
"remark-cli": "8.0.1",
"remark-toc": "7.1.0",
"rollup": "^2.39.0",
"standard-version": "9.1.0",
"tty-table": "4.1.3",
"typescript": "4.0.3"
10 years ago
},
"scripts": {
"build": "tsc && npm run bundle:cjs",
"bundle:cjs": "rollup build/index.js --format cjs --file build/snabbdom.cjs.js",
"format": "prettier --write .",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable",
"docs": "remark . --output",
"check-clean": "git diff --exit-code",
"lint:js": "eslint --ext .ts,.tsx,.js --ignore-path .gitignore .",
"lint:editorconfig": "editorconfig-checker",
"lint": "run-s lint:editorconfig lint:js",
"unit": "cross-env FILES_PATTERN=\"test/unit/*.ts,test/unit/*.tsx\" karma start karma.conf.js",
"benchmark": "cross-env FILES_PATTERN=\"test-bundles/benchmark/**/*.js\" karma start karma.conf.cjs --concurrency=1",
"make-release-commit": "standard-version",
"test": "run-s lint build bundle-tests unit"
10 years ago
},
"repository": {
"type": "git",
"url": "git+https://github.com/snabbdom/snabbdom.git"
10 years ago
},
"keywords": [
"virtual",
"dom",
"light",
"kiss",
"performance"
],
"author": "Simon Friis Vindum",
"license": "MIT",
"bugs": {
"url": "https://github.com/snabbdom/snabbdom/issues"
10 years ago
},
"prettier": {},
"remarkConfig": {
"plugins": [
[
"toc",
{
"tight": true
}
]
],
"settings": {
"listItemIndent": "1",
"bullet": "*",
"tablePipeAlign": false
}
},
"homepage": "https://github.com/snabbdom/snabbdom#readme"
10 years ago
}