-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.06 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.06 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
{
"name": "js-itertools",
"version": "0.3.1",
"description": "Provides utility functions (map, reduce, and so on) that work on top of ES2015's generators. Requires node 4 or above.",
"main": "lib/src/index.js",
"scripts": {
"build": "rimraf lib && tsc",
"test": "mocha lib/test --recursive",
"ts:watch": "tsc -w",
"test:watch": "mocha lib/test --recursive --watch",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RedRoserade/js-itertools.git"
},
"keywords": [
"generator",
"linq",
"es2015"
],
"author": "André Carvalho <afecarvalho@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/RedRoserade/js-itertools/issues"
},
"homepage": "https://github.com/RedRoserade/js-itertools#readme",
"devDependencies": {
"@types/chai": "^3.4.34",
"@types/mocha": "^2.2.32",
"chai": "^3.5.0",
"mocha": "^2.4.5",
"rimraf": "^2.5.2",
"typescript": "~2.0.0"
},
"engines": {
"node": ">=6.0.0"
},
"files": [
"lib"
]
}