forked from snabbdom/snabbdom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
117 lines (117 loc) · 3.25 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "snabbdom",
"version": "3.1.0",
"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",
"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:[email protected]",
"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",
"serve": "^12.0.0",
"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"
]
}
}
}