pkg-fetch/package.json
2016-08-12 14:22:32 +03:00

81 lines
1.7 KiB
JSON

{
"name": "pkg-cache",
"version": "0.0.1",
"description": "Base binaries for pkg",
"readme": "",
"main": "",
"files": [],
"babel": {
"plugins": [
"transform-async-to-generator",
"transform-es2015-modules-commonjs"
]
},
"eslintConfig": {
"extends": "standard",
"parser": "babel-eslint",
"rules": {
"yoda": 0,
"arrow-parens": 0,
"semi": [
2,
"always"
],
"no-extra-semi": 2,
"semi-spacing": [
2,
{
"before": false,
"after": true
}
],
"no-shadow": [
2,
{
"builtinGlobals": true,
"hoist": "functions"
}
],
"sort-imports": 2,
"array-bracket-spacing": [
2,
"always"
],
"generator-star-spacing": 0
}
},
"dependencies": {
"chalk": "1.1.3",
"child-process-promise": "2.0.3",
"expand-template": "1.0.2",
"mkdirp-promise": "2.0.0",
"request": "2.74.0",
"rimraf-promise": "2.0.0"
},
"devDependencies": {
"ava": "^0.16.0",
"babel-eslint": "6.0.4",
"babel-plugin-transform-async-to-generator": "6.8.0",
"babel-plugin-transform-es2015-modules-commonjs": "6.8.0",
"babel-register": "6.9.0",
"eslint": "3.2.2",
"eslint-config-standard": "5.3.1",
"eslint-plugin-promise": "2.0.1",
"eslint-plugin-standard": "2.0.0"
},
"scripts": {
"build-and-upload": "node -r babel-register lib/build-and-upload.js",
"lint": "eslint . || true",
"test": "ava"
},
"ava": {
"failFast": true,
"files": [
"test/*.js"
],
"require": [
"babel-register"
]
}
}