-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.69 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.69 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "jsiterable",
"version": "3.0.5",
"description": "No-dependency javascript iterable library exposing functional operations over iterables",
"main": "./lib/index.js",
"scripts": {
"clean": "rimraf ./lib && rimraf ./coverage",
"coverage": "npm run test && opener ./coverage/index.html",
"build": "tsc",
"test": "nyc mocha",
"prepublishOnly": "npm run clean && npm run build && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/riteshrao/jsiterable.git"
},
"keywords": [
"Iterables",
"Functional"
],
"author": "Ritesh Rao",
"license": "MIT",
"bugs": {
"url": "https://github.com/riteshrao/jsiterable/issues"
},
"homepage": "https://github.com/riteshrao/jsiterable#readme",
"sideEffects": false,
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"chai": "^4.2.0",
"mocha": "^7.1.1",
"nyc": "^15.0.1",
"opener": "^1.5.1",
"rimraf": "^3.0.2",
"source-map-support": "^0.5.16",
"ts-node": "^8.8.2",
"tslint": "^6.1.1",
"tslint-no-unused-expression-chai": "^0.1.4",
"typescript": "^3.8.3"
},
"nyc": {
"all": true,
"cache": false,
"include": [
"src/**/*.ts"
],
"exclude": [
"**/*.d.ts",
"test/**",
"src/types.ts"
],
"reporter": [
"html",
"json",
"text-summary"
],
"extension": [
".ts"
],
"source-map": true,
"instrument": true
}
}