Files
xen-orchestra/packages/xo-collection/package.json
T

87 lines
2.0 KiB
JSON
Raw Normal View History

{
2015-04-10 11:41:02 +02:00
"name": "xo-collection",
2016-11-02 15:12:23 +01:00
"version": "0.4.1",
2015-04-07 18:01:33 +02:00
"license": "ISC",
"description": "Generic in-memory collection with events",
"keywords": [],
2017-01-13 17:40:13 +01:00
"homepage": "https://github.com/vatesfr/xen-orchestra/tree/master/packages/xo-collection",
2017-01-10 18:05:01 +01:00
"bugs": "https://github.com/vatesfr/xo-web/issues",
2015-04-07 18:01:33 +02:00
"repository": {
"type": "git",
2017-01-10 18:05:01 +01:00
"url": "https://github.com/vatesfr/xen-orchestra.git"
2015-04-07 18:01:33 +02:00
},
"author": {
"name": "Fabrice Marsaud",
"email": "fabrice.marsaud@vates.fr"
},
"preferGlobal": false,
2015-04-14 10:47:47 +02:00
"main": "dist/collection",
2015-06-26 11:57:41 +02:00
"bin": {},
2015-04-07 18:01:33 +02:00
"files": [
2015-05-14 17:16:35 +02:00
"dist/",
"*.js"
2015-04-07 18:01:33 +02:00
],
2016-11-02 15:03:45 +01:00
"engines": {
"node": ">=4"
},
"dependencies": {
2016-11-02 15:03:45 +01:00
"babel-runtime": "^6.18.0",
"kindof": "^2.0.0",
2016-11-28 15:06:32 +01:00
"lodash": "^4.17.2",
2015-06-26 11:57:41 +02:00
"make-error": "^1.0.2"
},
"devDependencies": {
2016-11-02 15:03:45 +01:00
"babel-cli": "^6.18.0",
"babel-eslint": "^7.1.0",
2017-01-11 16:50:48 +01:00
"babel-plugin-lodash": "^3.2.11",
2016-11-02 15:03:45 +01:00
"babel-plugin-transform-runtime": "^6.15.0",
2017-01-11 16:50:48 +01:00
"babel-preset-env": "^1.1.8",
"babel-preset-stage-3": "^6.17.0",
"cross-env": "^3.1.4",
"dependency-check": "^2.7.0",
2016-11-02 15:03:45 +01:00
"event-to-promise": "^0.7.0",
"jest": "^18.1.0",
2017-01-11 16:50:48 +01:00
"rimraf": "^2.5.4",
"standard": "^8.6.0"
},
"scripts": {
2016-11-02 15:03:45 +01:00
"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/",
2017-01-11 16:50:48 +01:00
"dev-test": "jest --bail --watch",
"posttest": "standard && dependency-check ./package.json --entry dist/collection.js index.js unique-index.js view.js",
"prebuild": "rimraf dist/",
2017-01-27 16:54:32 +01:00
"predev": "yarn run prebuild",
"prepublish": "yarn run build",
"test": "jest"
},
2016-11-02 15:03:45 +01:00
"babel": {
"plugins": [
"lodash",
"transform-runtime"
],
"presets": [
2017-01-11 16:50:48 +01:00
[
"env",
{
"targets": {
"node": 4
}
}
],
"stage-3"
2016-11-02 15:03:45 +01:00
]
},
"jest": {
"testPathDirs": [
"<rootDir>/src"
],
"testRegex": "\\.spec\\.js$"
},
2015-04-07 18:01:33 +02:00
"standard": {
"ignore": [
2016-11-02 15:03:45 +01:00
"dist"
2015-06-26 11:57:41 +02:00
],
"parser": "babel-eslint"
2015-04-07 18:01:33 +02:00
}
}