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.
116 lines
3.2 KiB
JSON
116 lines
3.2 KiB
JSON
{
|
|
"name": "snabbdom",
|
|
"version": "3.0.3",
|
|
"description": "A virtual DOM library with focus on simplicity, modularity, powerful features and performance.",
|
|
"homepage": "https://github.com/snabbdom/snabbdom#readme",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/snabbdom/snabbdom.git"
|
|
},
|
|
"keywords": [
|
|
"virtual",
|
|
"dom",
|
|
"light",
|
|
"kiss",
|
|
"performance"
|
|
],
|
|
"author": "Simon Friis Vindum",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/snabbdom/snabbdom/issues"
|
|
},
|
|
"engines": {
|
|
"node": ">=8.3.0"
|
|
},
|
|
"main": "build/snabbdom.cjs.js",
|
|
"module": "build/index.js",
|
|
"types": "build/index.d.ts",
|
|
"sideEffects": false,
|
|
"scripts": {
|
|
"build": "tsc && npm run bundle:cjs",
|
|
"bundle:cjs": "rollup build/index.js --format cjs --file build/snabbdom.cjs.js",
|
|
"format": "prettier --write .",
|
|
"prepare": "husky install",
|
|
"lint": "eslint --ext .ts,.tsx,.js --ignore-path .gitignore .",
|
|
"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",
|
|
"release": "npm run test && release-it",
|
|
"test:ci": "npm test && cross-env ES5=true npm run unit",
|
|
"test": "npm run build && npm run lint && npm run unit"
|
|
},
|
|
"devDependencies": {
|
|
"@release-it/conventional-changelog": "^2.0.1",
|
|
"@types/chai": "4.2.18",
|
|
"@types/faker": "5.5.5",
|
|
"@types/lodash.shuffle": "4.2.6",
|
|
"@types/mathjs": "9.3.2",
|
|
"@types/mocha": "8.2.2",
|
|
"@typescript-eslint/eslint-plugin": "4.25.0",
|
|
"@typescript-eslint/parser": "^4.25.0",
|
|
"benchmark": "2.1.4",
|
|
"chai": "4.3.4",
|
|
"chalk": "4.1.1",
|
|
"commithelper": "^1.1.1",
|
|
"conventional-changelog-angular": "^5.0.12",
|
|
"core-js": "3.13.1",
|
|
"cross-env": "7.0.3",
|
|
"eslint": "7.27.0",
|
|
"eslint-config-prettier": "^8.3.0",
|
|
"eslint-plugin-import": "2.23.4",
|
|
"eslint-plugin-markdown": "2.2.0",
|
|
"eslint-plugin-node": "11.1.0",
|
|
"faker": "5.5.3",
|
|
"husky": "6.0.0",
|
|
"karma": "6.3.2",
|
|
"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.5.1",
|
|
"latest-snabbdom-release": "npm:snabbdom@2.1.0",
|
|
"lint-staged": "^11.0.0",
|
|
"lodash.shuffle": "4.2.0",
|
|
"mathjs": "9.4.1",
|
|
"mocha": "8.4.0",
|
|
"p-map-series": "3.0.0",
|
|
"p-reduce": "3.0.0",
|
|
"prettier": "^2.3.0",
|
|
"release-it": "^14.7.0",
|
|
"rollup": "^2.50.4",
|
|
"tty-table": "4.1.3",
|
|
"typescript": "4.3.2"
|
|
},
|
|
"prettier": {},
|
|
"lint-staged": {
|
|
"*.(ts|tsx|js|md)": "prettier --write"
|
|
},
|
|
"release-it": {
|
|
"git": {
|
|
"commitMessage": "chore(release): v${version}"
|
|
},
|
|
"github": {
|
|
"release": true
|
|
},
|
|
"plugins": {
|
|
"@release-it/conventional-changelog": {
|
|
"preset": "angular",
|
|
"infile": "CHANGELOG.md"
|
|
}
|
|
}
|
|
},
|
|
"commithelper": {
|
|
"scopeOverrides": {
|
|
"chore": [
|
|
"tools",
|
|
"refactor",
|
|
"release",
|
|
"test",
|
|
"deps",
|
|
"docs",
|
|
"examples"
|
|
]
|
|
}
|
|
}
|
|
}
|