vegeto
Version:
Simple micro templating with JavaScript expression support.
46 lines (45 loc) • 840 B
JSON
{
"name": "vegeto",
"version": "1.0.1",
"description": "Simple micro templating with JavaScript expression support.",
"repository": {
"url": "egoist/vegeto",
"type": "git"
},
"main": "dist/vegeto.common.js",
"files": [
"dist"
],
"scripts": {
"test": "jest && npm run lint && npm run build",
"lint": "xo",
"build": "bili --format umd --format cjs"
},
"author": "egoist <0x142857@gmail.com>",
"license": "MIT",
"jest": {
"testEnvironment": "node"
},
"babel": {
"env": {
"test": {
"presets": [
"es2015"
]
}
}
},
"devDependencies": {
"jest-cli": "^18.1.0",
"xo": "^0.17.1",
"babel-preset-es2015": "^6.22.0",
"bili": "^0.14.0"
},
"xo": {
"space": 2,
"semicolon": false,
"envs": [
"jest"
]
}
}