-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.16 KB
/
package.json
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
{
"name": "iterative",
"version": "1.9.2",
"publishConfig": {
"access": "public"
},
"description": "Functions for working with iterators in JavaScript, with TypeScript",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git://github.com/blakeembrey/iterative.git"
},
"author": {
"name": "Blake Embrey",
"email": "[email protected]",
"url": "http://blakeembrey.me"
},
"homepage": "https://github.com/blakeembrey/iterative",
"bugs": {
"url": "https://github.com/blakeembrey/iterative/issues"
},
"main": "dist/index.js",
"scripts": {
"format": "ts-scripts format",
"lint": "ts-scripts lint",
"prepare": "ts-scripts install && ts-scripts build",
"specs": "ts-scripts specs",
"test": "ts-scripts test"
},
"files": [
"dist/"
],
"keywords": [
"iter",
"iterable",
"itertools",
"iteration",
"iterator",
"generator",
"function",
"util"
],
"devDependencies": {
"@borderless/ts-scripts": "^0.3.0",
"@types/jest": "^24.0.11",
"@types/node": "^13.1.2",
"ts-expect": "^1.1.0",
"typescript": "^4.2.4"
},
"types": "dist/index.d.ts"
}