-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
73 lines (73 loc) · 2.1 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
{
"name": "@riotjs/dom-bindings",
"version": "9.2.3",
"description": "Riot.js DOM bindings",
"main": "dist/dom-bindings.cjs",
"jsnext:main": "dist/dom-bindings.js",
"module": "dist/dom-bindings.js",
"types": "./dom-bindings.d.ts",
"type": "module",
"exports": {
"types": "./dom-bindings.d.ts",
"import": "./dist/dom-bindings.js",
"require": "./dist/dom-bindings.cjs"
},
"scripts": {
"lint": "eslint src/ test/ rollup.config.js && prettier --check ./",
"cov": "c8 report --reporter=lcov",
"cov-html": "c8 report --reporter=html",
"build": "rollup -c",
"build-bench": "rollup -c benchmarks/rollup.config.js",
"pretest": "npm run build",
"postest": "npm run cov-html",
"bench": "node --expose-gc benchmarks/index.js",
"test": "npm run lint && c8 mocha -r test/index.js 'test/**/*.spec.js' && npm run test-typing",
"test-typing": "tsc -p test",
"test-debug": "mocha --inspect --inspect-brk -r test/index.js 'test/**/*.spec.js'",
"prepublishOnly": "npm test"
},
"files": [
"dom-bindings.d.ts",
"src",
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/GianlucaGuarini/dom-bindings.git"
},
"keywords": [
"riot",
"dom-bindings"
],
"nyc": {
"include": "src",
"exclude": "src/util/udomdiff.js"
},
"author": "Gianluca Guarini <[email protected]> (https://gianlucaguarini.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/GianlucaGuarini/dom-bindings/issues"
},
"homepage": "https://github.com/GianlucaGuarini/dom-bindings#readme",
"devDependencies": {
"@riotjs/prettier-config": "^1.1.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"benchmark": "^2.1.4",
"c8": "^10.1.2",
"chai": "^5.1.2",
"coveralls": "^3.1.1",
"eslint": "^8.57.0",
"eslint-config-riot": "^4.1.2",
"jsdom": "^25.0.1",
"jsdom-global": "3.0.2",
"mocha": "^10.8.2",
"prettier": "^3.3.3",
"rollup": "^4.24.4",
"sinon": "^19.0.2",
"sinon-chai": "^4.0.0",
"typescript": "^5.6.3"
},
"dependencies": {
"@riotjs/util": "^2.4.0"
}
}