71 lines
1.6 KiB
JSON
71 lines
1.6 KiB
JSON
{
|
|
"name": "pkg-fetch",
|
|
"version": "2.5.8",
|
|
"description": "Compiles and stores base binaries for pkg",
|
|
"main": "lib-es5/index.js",
|
|
"license": "MIT",
|
|
"repository": "zeit/pkg-fetch",
|
|
"bin": {
|
|
"pkg-fetch": "lib-es5/bin.js"
|
|
},
|
|
"files": [
|
|
"lib-es5/*.js",
|
|
"patches/*",
|
|
"places.json"
|
|
],
|
|
"babel": {
|
|
"plugins": [
|
|
"transform-async-to-generator",
|
|
"transform-runtime"
|
|
],
|
|
"presets": [
|
|
"es2015"
|
|
]
|
|
},
|
|
"dependencies": {
|
|
"babel-runtime": "~6.26.0",
|
|
"byline": "~5.0.0",
|
|
"chalk": "~2.4.1",
|
|
"expand-template": "~2.0.3",
|
|
"fs-extra": "~7.0.1",
|
|
"minimist": "~1.2.0",
|
|
"progress": "~2.0.0",
|
|
"request": "~2.88.0",
|
|
"request-progress": "~3.0.0",
|
|
"semver": "~6.0.0",
|
|
"unique-temp-dir": "~1.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"ava": "~1.4.1",
|
|
"babel-cli": "~6.26.0",
|
|
"babel-eslint": "~10.0.1",
|
|
"babel-plugin-transform-async-to-generator": "~6.24.1",
|
|
"babel-plugin-transform-runtime": "~6.23.0",
|
|
"babel-preset-es2015": "~6.24.1",
|
|
"babel-register": "~6.26.0",
|
|
"eslint-config-klopov": "~0.13.0"
|
|
},
|
|
"scripts": {
|
|
"babel": "node test/rimraf-es5.js && babel lib --out-dir lib-es5",
|
|
"bin": "node lib-es5/bin.js",
|
|
"lint": "eslint-klopov . || true",
|
|
"prepare": "npm run babel",
|
|
"prepublishOnly": "eslint-klopov . && npm test",
|
|
"start": "node lib-es5/upload.js",
|
|
"test": "ava"
|
|
},
|
|
"eslintConfig": {
|
|
"extends": "klopov",
|
|
"parser": "babel-eslint"
|
|
},
|
|
"ava": {
|
|
"failFast": true,
|
|
"files": [
|
|
"test/*.test.js"
|
|
],
|
|
"require": [
|
|
"babel-register"
|
|
]
|
|
}
|
|
}
|