45 lines
1.2 KiB
JSON
45 lines
1.2 KiB
JSON
{
|
|
"private": false,
|
|
"name": "xo-collection",
|
|
"version": "0.5.0",
|
|
"license": "AGPL-3.0-or-later",
|
|
"description": "Generic in-memory collection with events",
|
|
"homepage": "https://github.com/vatesfr/xen-orchestra/tree/master/packages/xo-collection",
|
|
"bugs": "https://github.com/vatesfr/xen-orchestra/issues",
|
|
"repository": {
|
|
"directory": "packages/xo-collection",
|
|
"type": "git",
|
|
"url": "https://github.com/vatesfr/xen-orchestra.git"
|
|
},
|
|
"author": {
|
|
"name": "Vates SAS",
|
|
"url": "https://vates.fr"
|
|
},
|
|
"preferGlobal": false,
|
|
"main": "dist/collection",
|
|
"engines": {
|
|
"node": ">=6"
|
|
},
|
|
"dependencies": {
|
|
"kindof": "^2.0.0",
|
|
"lodash": "^4.17.2",
|
|
"make-error": "^1.0.2"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.0.0",
|
|
"@babel/core": "^7.0.0",
|
|
"@babel/preset-env": "^7.0.0",
|
|
"cross-env": "^7.0.2",
|
|
"promise-toolbox": "^0.21.0",
|
|
"rimraf": "^5.0.1"
|
|
},
|
|
"scripts": {
|
|
"build": "cross-env NODE_ENV=production babel --source-maps --out-dir=dist/ src/",
|
|
"dev": "cross-env NODE_ENV=development babel --watch --source-maps --out-dir=dist/ src/",
|
|
"prebuild": "rimraf dist/",
|
|
"predev": "yarn run prebuild",
|
|
"prepublishOnly": "yarn run build",
|
|
"postversion": "npm publish"
|
|
}
|
|
}
|