@webfaas/webfaas-core
Version:
WebFaaS Framework - Core
51 lines (50 loc) • 1.62 kB
JSON
{
"name": "@webfaas/webfaas-core",
"version": "0.13.1",
"description": "WebFaaS Framework - Core",
"main": "lib/Core.js",
"readmeFilename": "README.md",
"keywords": [
"webfaas",
"faas",
"rpc",
"fog",
"web"
],
"scripts": {
"test": "mocha --config scripts/mocha.json",
"test:coverage": "nyc --nycrc-path scripts/nyc.json npm run test",
"start": "node_modules/.bin/tsc -w && npm run build:static",
"build": "npm run build:clean && node_modules/.bin/tsc && npm run build:static",
"build:clean": "rm -rf dist",
"build:static": "cp package.json dist && cp README.md dist && cp .npmignore dist && cp src/test/data -R dist/test && mkdir -p dist/test/mocks/wasm && cp src/test/mocks/wasm/*.wasm dist/test/mocks/wasm",
"setnpmtoken": "rm ~/.npmrc && echo '//registry.npmjs.org/:_authToken=${NPM_TOKEN}' > ~/.npmrc",
"publish_npm": "cd dist && npm publish --access public",
"pack": "cd dist && npm pack",
"buildAndTest": "npm run build && npm run test:coverage",
"setnpmtokenAndPublish": "npm run setnpmtoken && npm run publish_npm"
},
"repository": {
"type": "git",
"url": "https://github.com/webfaas/core.git"
},
"dependencies": {},
"devDependencies": {
"@types/chai": "^4.2",
"@types/mocha": "^7.0",
"@types/node": "^13.7",
"chai": "^4.2",
"mocha": "^7.1",
"nyc": "^15.0",
"typescript": "^3.8",
"typescript-tslint-plugin": "^0.5"
},
"engines": {
"node": ">=10.0.0"
},
"author": {
"name": "Rogério Dias Moreira",
"email": "rogeriodegoiania@gmail.com"
},
"license": "MIT"
}