function-tree
Version:
When a function is not enough
56 lines • 1.65 kB
JSON
{
"name": "function-tree",
"version": "3.3.4",
"description": "When a function is not enough",
"main": "index.js",
"module": "./es/index.js",
"jsnext:main": "./es/index.js",
"typings": "./index.d.ts",
"scripts": {
"coverage": "nyc --reporter=lcov --reporter=json npm run test",
"build": "run-p build:*",
"build:cjs": "cross-env tsc && cross-env BABEL_ENV=cjs babel src/ --out-dir=lib/ -s",
"build:es": "cross-env tsc -p ./tsconfig.es2015.json && cross-env BABEL_ENV=es babel src/ --out-dir=es/ -s",
"prepublish": "npm run build",
"test": "npm run test:ts && cross-env NODE_ENV=test BABEL_ENV=test mocha --require @babel/register \"src/**/*.test.js\"",
"test:ts": "cross-env NODE_OPTIONS=--import=tsx mocha \"src/**/*.spec.ts\"",
"test:watch": "npm run test -- --watch",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"eventemitter3": "^5.0.1",
"universal-websocket-client": "^1.0.3"
},
"directories": {
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cerebral/cerebral.git"
},
"keywords": [
"javascript",
"function",
"flow",
"complex",
"state"
],
"author": "Christian Alfoni <christianalfoni@gmail.com>",
"contributors": [
"Aleksey Guryanov <gurianov@gmail.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/cerebral/cerebral/issues"
},
"homepage": "https://github.com/cerebral/cerebral/tree/master/packages/function-tree#readme",
"nyc": {
"exclude": [
"node_modules",
"lib",
"tests",
"**/*.test.js",
"**/testHelper.js"
]
}
}