@dvo/raven
Version:
A simple store and databinding tool for vanilla applications.
43 lines (42 loc) • 1.1 kB
JSON
{
"name": "@dvo/raven",
"version": "3.0.0",
"description": "A simple store and databinding tool for vanilla applications.",
"main": "build/index.js",
"scripts": {
"lint": "standard \"src/**/*[!.test].js\"",
"jest": "jest --coverage",
"test": "npm run lint && npm run jest",
"transpile": "babel ./src -d ./lib",
"minify": "terser lib/index.js --compress --mangle --output lib/index.js",
"build": "npm run transpile && npm run minify"
},
"repository": {
"type": "git",
"url": "git+https://github.com/isacvale/dvo-raven.git"
},
"keywords": [
"subpub",
"data-binding",
"javascript"
],
"author": "isacvale",
"license": "ISC",
"bugs": {
"url": "https://github.com/isacvale/dvo-raven/issues"
},
"homepage": "https://github.com/isacvale/dvo-raven#readme",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.7",
"@babel/preset-env": "^7.8.7",
"jest": "^26.0.1",
"standard": "^14.3.4",
"terser": "^4.7.0"
},
"directories": {
"lib": "lib",
"test": "tests"
},
"dependencies": {}
}