lazy-object-view
Version:
A simple JS object tree visualizer/explorer that adheres to 'what you see is what's in the DOM'
73 lines (72 loc) • 1.74 kB
JSON
{
"name": "lazy-object-view",
"version": "1.2.1",
"description": "A simple JS object tree visualizer/explorer that adheres to 'what you see is what's in the DOM'",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "webpack -p",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"test": "nyc mocha -r ts-node/register --require ignore-styles --reporter spec ./tst/**/*.spec.ts && nyc report --reporter=text-lcov | coveralls",
"release": "npm run build && npm run lint && npm test && npm publish"
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"exclude": [
"webpack.config.js",
"**/*.d.ts",
"tst/",
"dist/",
"coverage/"
],
"reporter": [
"html"
],
"all": true
},
"keywords": [
"json",
"render",
"view",
"tree",
"lazy",
"object",
"visualization"
],
"author": "ameer.ayoub@gmail.com",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/jsdom": "^12.2.0",
"@types/mocha": "^5.2.5",
"awesome-typescript-loader": "^5.2.1",
"chai": "^4.2.0",
"coveralls": "^3.0.2",
"css-loader": "^2.0.1",
"dts-bundle": "^0.7.3",
"ignore-styles": "^5.0.1",
"jsdom": "^13.1.0",
"mocha": "^5.2.0",
"node-sass": "^4.11.0",
"nyc": "^13.1.0",
"sass-loader": "^7.1.0",
"source-map-support": "^0.5.9",
"style-loader": "^0.23.1",
"ts-lint": "^4.5.1",
"ts-node": "^7.0.1",
"typescript": "^3.2.2",
"webpack": "^4.28.0",
"webpack-cli": "^3.1.2"
},
"repository": {
"type": "git",
"url": "https://github.com/ameerkat/lazy-object-view"
},
"files": [
"dist/**/*",
"assets/*"
]
}