You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.0 KiB
42 lines
1.0 KiB
6 months ago
|
{
|
||
|
"name": "phin",
|
||
|
"version": "2.9.3",
|
||
|
"description": "Ultra-simple, lightweight, dependency-free Node.JS HTTP request client",
|
||
|
"main": "lib/phin.compiled.js",
|
||
|
"scripts": {
|
||
|
"test": "echo \"Tested before deployment.\" && exit 0",
|
||
|
"test-dev": "node ./tests/test.js",
|
||
|
"prepublishOnly": "npm run test-dev",
|
||
|
"gendocs": "rm -r docs || true && jsdoc -R README.md -d ./docs lib/phin.js",
|
||
|
"build": "npx babel lib/phin.js --out-file lib/phin.compiled.js --presets env --minified --no-comments"
|
||
|
},
|
||
|
"repository": {
|
||
|
"type": "git",
|
||
|
"url": "git+https://github.com/ethanent/phin.git"
|
||
|
},
|
||
|
"keywords": [
|
||
|
"http",
|
||
|
"https",
|
||
|
"request",
|
||
|
"fetch",
|
||
|
"ajax",
|
||
|
"url",
|
||
|
"uri"
|
||
|
],
|
||
|
"author": "Ethan Davis",
|
||
|
"license": "MIT",
|
||
|
"bugs": {
|
||
|
"url": "https://github.com/ethanent/phin/issues"
|
||
|
},
|
||
|
"homepage": "https://github.com/ethanent/phin#readme",
|
||
|
"devDependencies": {
|
||
|
"babel-cli": "^6.26.0",
|
||
|
"babel-preset-env": "^1.6.1",
|
||
|
"whew": "^1.0.0"
|
||
|
},
|
||
|
"files": [
|
||
|
"lib/phin.compiled.js",
|
||
|
"LICENSE"
|
||
|
]
|
||
|
}
|