Skip to content

Instantly share code, notes, and snippets.

@bcoe
Created May 17, 2017 19:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bcoe/0844b24c53cb81de703c091490034a23 to your computer and use it in GitHub Desktop.
Save bcoe/0844b24c53cb81de703c091490034a23 to your computer and use it in GitHub Desktop.
package.json
{
"name": "@funkia/hareactive",
"version": "0.0.31",
"description": "Experimental FRP library for building web applications.",
"main": "dist/index.js",
"module": "dist/es/index.js",
"typings": "dist/defs/index.d.ts",
"directories": {
"test": "test",
"dist": "dist"
},
"scripts": {
"build": "npm run build-es6; npm run build-cmjs",
"build-es6": "tsc -P ./tsconfig-release.json --outDir 'dist/es' --module es6",
"build-cmjs": "tsc -P ./tsconfig-release.json",
"prepublishOnly": "npm run clean; npm run build",
"prebench": "npm run build-cmjs",
"bench": "node benchmark",
"clean": "rm -rf dist coverage .nyc_output",
"test": "nyc mocha --recursive test/**/*.ts",
"test-watch": "mocha -R progress --watch --compilers ts:ts-node/register test/**/*.ts",
"test-browser": "karma start karma.conf.js",
"codecov": "codecov -f coverage/coverage-final.json",
"release-major": "xyz --repo git@github.com:funkia/hareactive.git --increment major",
"release-minor": "xyz --repo git@github.com:funkia/hareactive.git --increment minor",
"release-patch": "xyz --repo git@github.com:funkia/hareactive.git --increment patch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/paldepind/hareactive.git"
},
"keywords": [
"frp",
"functional reactive programming",
"pure"
],
"author": "Funkia",
"license": "MIT",
"bugs": {
"url": "https://github.com/paldepind/hareactive/issues"
},
"homepage": "https://github.com/paldepind/hareactive#readme",
"dependencies": {
"@funkia/jabz": "0.0.19"
},
"devDependencies": {
"@funkia/jabz": "0.0.19",
"@types/benchmark": "^1.0.30",
"@types/chai": "^3.5.2",
"@types/mocha": "^2.2.41",
"@types/sinon": "^1.16.36",
"benchmark": "^2.1.4",
"browser-env": "^2.0.31",
"browserify": "^14.3.0",
"browserify-istanbul": "^2.0.0",
"chai": "^3.5.0",
"codecov": "^2.1.0",
"karma": "^1.6.0",
"karma-browserify": "^5.1.1",
"karma-chrome-launcher": "^2.1.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.3",
"karma-source-map-support": "^1.2.0",
"mocha": "^3.3.0",
"most": "^1.3.0",
"nyc": "^10.3.2",
"sinon": "^2.2.0",
"source-map-support": "^0.4.15",
"ts-node": "^3.0.3",
"tsify": "^3.0.1",
"typescript": "^2.3.2",
"watchify": "^3.9.0",
"webpack": "^2.5.0",
"xyz": "2.1.0"
},
"nyc": {
"extension": [
".ts"
],
"require": [
"ts-node/register",
"source-map-support/register"
],
"reporter": [
"json",
"html",
"text"
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment