UNPKG

1.71 kBJSONView Raw
1{
2 "name": "list",
3 "version": "2.0.6",
4 "description": "Fast purely functional immutable lists.",
5 "main": "dist/index.js",
6 "module": "dist/es/index.js",
7 "scripts": {
8 "build": "npm run build-es6; npm run build-cmjs",
9 "build-es6": "tsc -P ./tsconfig-build.json --outDir 'dist/es' --module es2015",
10 "build-cmjs": "tsc -P ./tsconfig-build.json",
11 "test": "nyc mocha --timeout 10000 --recursive test/*.ts",
12 "test-watch": "mocha -R progress --timeout 10000 --watch --require ts-node/register --watch-extensions ts test/*.ts",
13 "test-property": "mocha --timeout 0 --require ts-node/register --recursive test/property/*.ts",
14 "codecov": "codecov -f coverage/coverage-final.json",
15 "bench": "node bench",
16 "format": "prettier --write \"{src,test,scripts}/**/*.{js,ts}\"",
17 "prepublishOnly": "npm run build; node ./scripts/make-proxies",
18 "release": "np"
19 },
20 "author": "Simon Friis Vindum",
21 "license": "MIT",
22 "sideEffects": [
23 "**/fantasy-land.js",
24 "**/methods.js"
25 ],
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.4",
33 "np": "^2.19.0",
34 "nyc": "11.6.0",
35 "prettier": "1.11.1",
36 "proptest": "0.0.4",
37 "ramda": "0.25.0",
38 "source-map-support": "^0.5.3",
39 "ts-node": "5.0.1",
40 "typescript": "^2.7.1"
41 },
42 "files": [
43 "dist",
44 "methods",
45 "fantasy-land",
46 "ramda"
47 ],
48 "nyc": {
49 "extension": [
50 ".ts"
51 ],
52 "require": [
53 "ts-node/register",
54 "source-map-support/register"
55 ],
56 "reporter": [
57 "json",
58 "html",
59 "text",
60 "lcov"
61 ]
62 }
63}