This repository has been archived on 2020-09-01. You can view files and clone it, but cannot push or open issues or pull requests.
reactimal/package.json

34 lines
692 B
JSON

{
"name": "reactimal",
"version": "1.0.1",
"description": "Reactive programming primitives",
"main": "src/index.js",
"files": [
"src"
],
"scripts": {
"build": "webpack --mode=production",
"test": "karmatic"
},
"repository": {
"type": "git",
"url": "https://gitlab.com/explorigin/reactimal.git"
},
"keywords": [
"reactive"
],
"author": "Timothy Farrell <tim@thecookiejar.me> (https://github.com/explorigin)",
"license": "Apache-2.0",
"devDependencies": {
"husky": "^3.1.0",
"karmatic": "^2.1.0",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12"
},
"husky": {
"hooks": {
"pre-commit": "npm run test"
}
}
}