UNPKG

1.57 kBJSONView Raw
1{
2 "name": "list",
3 "version": "2.0.1",
4 "description": "Fast purely functional immutable lists.",
5 "main": "index.js",
6 "scripts": {
7 "build": "npm run build-es6; npm run build-cmjs",
8 "build-es6": "tsc -P ./tsconfig-build.json --outDir 'dist/es' --module es2015",
9 "build-cmjs": "tsc -P ./tsconfig-build.json",
10 "test": "nyc mocha --timeout 5000 --recursive test/*.ts",
11 "test-watch": "mocha -R progress --timeout 5000 --watch --require ts-node/register --watch-extensions ts test/*.ts",
12 "test-property": "mocha --timeout 0 --require ts-node/register --recursive test/property/*.ts",
13 "codecov": "codecov -f coverage/coverage-final.json",
14 "bench": "node bench",
15 "format": "prettier --write \"{src,test}/**/*.ts\"",
16 "prepublishOnly": "npm run build; cp -r dist/* .",
17 "release": "np"
18 },
19 "author": "Simon Friis Vindum",
20 "license": "MIT",
21 "peerDependencies": {
22 "ramda": "*"
23 },
24 "module": "es/index.js",
25 "sideEffects": false,
26 "devDependencies": {
27 "@types/chai": "4.1.2",
28 "@types/mocha": "2.2.48",
29 "@types/ramda": "^0.25.17",
30 "chai": "4.1.2",
31 "codecov": "3.0.0",
32 "mocha": "5.0.0",
33 "np": "^2.19.0",
34 "nyc": "11.4.1",
35 "prettier": "1.10.2",
36 "ramda": "0.25.0",
37 "source-map-support": "^0.5.3",
38 "ts-node": "4.1.0",
39 "typescript": "^2.7.1"
40 },
41 "nyc": {
42 "extension": [
43 ".ts"
44 ],
45 "require": [
46 "ts-node/register",
47 "source-map-support/register"
48 ],
49 "reporter": [
50 "json",
51 "html",
52 "text",
53 "lcov"
54 ]
55 }
56}