-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
56 lines (56 loc) · 1.35 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
52
53
54
55
56
{
"name": "imlazy",
"version": "0.0.0-development",
"description": "Functional programming with lazy immutable iterables",
"main": "index.js",
"scripts": {
"benchmark": "node benchmarks/filter && node benchmarks/map",
"docs": "node docsSrc/docs",
"fmt": "prettier -u --write '**/*'",
"test": "run-p test:*",
"test:audit": "npm audit --audit-level=low",
"test:fmt": "prettier --check -u '**/*'",
"test:unit": "tape 'test/**/*.js'",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/benji6/imlazy.git"
},
"author": "Ben Hall",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/benji6/imlazy/issues"
},
"keywords": [
"circular",
"data",
"declarative",
"functional",
"immutable",
"infinite",
"iterable",
"iteration",
"iterator",
"lazy",
"protocol",
"sequence",
"structure"
],
"homepage": "https://github.com/benji6/imlazy",
"dependencies": {
"lodash.isequalwith": "^4.4.0"
},
"devDependencies": {
"benchmark": "^2.1.0",
"clean-css": "^5.3.3",
"dox": "^1.0.0",
"fun-task": "^1.5.2",
"highlight.js": "^11.4.0",
"immutable": "^5.0.0-beta.5",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.0",
"semantic-release": "^24.0.0",
"tape": "^5.5.0"
}
}