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.
106 lines
2.8 KiB
JSON
106 lines
2.8 KiB
JSON
{
|
|
"name": "snabbdom",
|
|
"version": "3.5.1",
|
|
"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",
|
|
"examples": "serve .",
|
|
"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",
|
|
"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": "^5.1.1",
|
|
"@types/chai": "4.3.3",
|
|
"@types/lodash.shuffle": "4.2.7",
|
|
"@types/mocha": "10.0.0",
|
|
"@typescript-eslint/eslint-plugin": "5.42.0",
|
|
"@typescript-eslint/parser": "^5.42.0",
|
|
"chai": "4.3.6",
|
|
"commithelper": "^1.2.0",
|
|
"conventional-changelog-angular": "^5.0.13",
|
|
"cross-env": "7.0.3",
|
|
"eslint": "8.26.0",
|
|
"eslint-config-prettier": "^8.5.0",
|
|
"eslint-plugin-import": "2.26.0",
|
|
"eslint-plugin-markdown": "3.0.0",
|
|
"eslint-plugin-node": "11.1.0",
|
|
"husky": "8.0.1",
|
|
"karma": "6.4.1",
|
|
"karma-browserstack-launcher": "1.6.0",
|
|
"karma-chrome-launcher": "3.1.1",
|
|
"karma-firefox-launcher": "2.1.2",
|
|
"karma-mocha": "2.0.1",
|
|
"karma-mocha-reporter": "^2.2.5",
|
|
"karma-typescript": "^5.5.3",
|
|
"lint-staged": "^13.0.3",
|
|
"lodash.shuffle": "4.2.0",
|
|
"mocha": "10.1.0",
|
|
"prettier": "^2.7.1",
|
|
"release-it": "^15.5.0",
|
|
"rollup": "^3.2.3",
|
|
"serve": "^14.0.1",
|
|
"typescript": "4.8.4"
|
|
},
|
|
"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"
|
|
]
|
|
}
|
|
}
|
|
}
|