forked from riot/dom-bindings
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.6 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
{
"name": "@riotjs/dom-bindings",
"version": "4.2.5",
"description": "Riot.js DOM bindings",
"main": "dist/umd.dom-bindings.js",
"jsnext:main": "dist/esm.dom-bindings.js",
"module": "dist/esm.dom-bindings.js",
"scripts": {
"lint": "eslint src/ test/ rollup.config.js",
"cov": "nyc report --reporter=text-lcov | coveralls",
"cov-html": "nyc report --reporter=html",
"build": "rollup -c",
"pretest": "npm run build",
"postest": "npm run cov-html",
"bench": "node benchmarks",
"test": "npm run lint && nyc mocha -r esm test/index.js",
"test-debug": "mocha -r esm --inspect --inspect-brk test/index.js",
"prepublishOnly": "npm test"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/GianlucaGuarini/dom-bindings.git"
},
"keywords": [
"riot",
"dom-bindings"
],
"author": "Gianluca Guarini <gianluca.guarini@gmail.com> (http://gianlucaguarini.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/GianlucaGuarini/dom-bindings/issues"
},
"homepage": "https://github.com/GianlucaGuarini/dom-bindings#readme",
"devDependencies": {
"benchmark": "^2.1.4",
"chai": "^4.2.0",
"coveralls": "^3.0.5",
"eslint": "^6.1.0",
"eslint-config-riot": "^2.0.0",
"esm": "^3.2.25",
"jsdom": "15.1.1",
"jsdom-global": "3.0.2",
"mocha": "^6.2.0",
"nyc": "^14.1.1",
"rollup": "^1.18.0",
"rollup-plugin-alias": "^1.5.2",
"rollup-plugin-node-resolve": "^5.2.0",
"sinon": "^7.3.2",
"sinon-chai": "^3.3.0"
},
"dependencies": {
"domdiff": "^2.0.6"
}
}