list
Version:
Fast purely functional immutable lists.
67 lines (66 loc) • 1.76 kB
JSON
{
"name": "list",
"version": "2.0.11",
"description": "Fast purely functional immutable lists.",
"main": "dist/index.js",
"types": "./dist/index.d.ts",
"module": "dist/es/index.js",
"scripts": {
"build": "npm run build-es6; npm run build-cmjs",
"build-es6": "tsc -P ./tsconfig-build.json --outDir 'dist/es' --module es2015",
"build-cmjs": "tsc -P ./tsconfig-build.json",
"test": "nyc mocha --timeout 10000 --recursive test/*.ts",
"test-watch": "mocha -R progress --timeout 10000 --watch --require ts-node/register --watch-extensions ts test/*.ts",
"test-property": "mocha --timeout 0 --require ts-node/register --recursive test/property/*.ts",
"codecov": "codecov -f coverage/coverage-final.json",
"bench": "node bench",
"format": "prettier --write \"{src,test,scripts}/**/*.{js,ts}\"",
"prepublishOnly": "npm run build; node ./scripts/make-proxies",
"release": "np"
},
"author": "Simon Friis Vindum",
"license": "MIT",
"sideEffects": [
"**/fantasy-land.js",
"**/methods.js"
],
"devDependencies": {
"@types/chai": "4.1.2",
"@types/mocha": "5.0.0",
"@types/ramda": "^0.25.17",
"chai": "4.1.2",
"codecov": "3.0.0",
"mocha": "5.1.0",
"np": "^2.19.0",
"nyc": "11.6.0",
"prettier": "1.12.1",
"proptest": "0.0.4",
"ramda": "0.25.0",
"source-map-support": "^0.5.3",
"ts-node": "6.0.0",
"typescript": "^2.7.1"
},
"files": [
"src",
"dist",
"methods",
"curried",
"fantasy-land",
"ramda"
],
"nyc": {
"extension": [
".ts"
],
"require": [
"ts-node/register",
"source-map-support/register"
],
"reporter": [
"json",
"html",
"text",
"lcov"
]
}
}