-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.08 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
{
"name": "dom-nodes",
"version": "1.1.3",
"description": "List of all the available DOM and SVG nodes and helper functions to quickly test against them",
"main": "dom-nodes.js",
"jsnext:main": "index.next.js",
"module": "index.next.js",
"scripts": {
"prepare": "npm run build && npm test",
"lint": "eslint index.next.js test.js rollup.config.js",
"build": "rollup -c",
"doc": "npx documentation readme index.next.js -s API",
"test": "npm run build && npm run lint && mocha test.js"
},
"files": [
"index.next.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/riot/dom-nodes.git"
},
"keywords": [
"html",
"svg",
"void",
"dom",
"riot"
],
"author": "Gianluca Guarini <gianluca.guarini@gmail.com> (http://gianlucaguarini.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/riot/dom-nodes/issues"
},
"homepage": "https://github.com/riot/dom-nodes#readme",
"devDependencies": {
"eslint-config-riot": "^3.0.0",
"eslint": "^6.1.0",
"mocha": "^6.2.0",
"rollup": "^1.18.0"
}
}