UNPKG

886 BJSONView Raw
1{
2 "name": "dom-lite",
3 "version": "0.3.5",
4 "stability": 2,
5 "license": "MIT",
6 "author": "Lauri Rooden <lauri@rooden.ee>",
7 "description": "A small DOM implementation",
8 "keywords": [
9 "dom"
10 ],
11 "main": "index.js",
12 "readmeFilename": "README.md",
13 "scripts": {
14 "build": "node node_modules/buildman/index.js --all",
15 "travis-test": "istanbul cover ./tests/index.js && (coveralls < coverage/lcov.info || exit 0)",
16 "cover-climate": "istanbul cover ./tests/index.js && (codeclimate < coverage/lcov.info || exit 0)",
17 "test": "node tests/index.js"
18 },
19 "repository": "git://github.com/litejs/dom-lite.git",
20 "bugs": {
21 "url": "https://github.com/litejs/dom-lite/issues"
22 },
23 "devDependencies": {
24 "buildman": "*",
25 "tape": "2.12.x"
26 },
27 "jshintConfig": {
28 "asi": true,
29 "laxcomma": true,
30 "maxdepth": 6,
31 "quotmark": "double"
32 }
33}