-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.29 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
{
"name": "lazy-pipeline",
"description": "A reusable, tree-shakable lazy pipeline with functional APIs",
"version": "2.4.0",
"private": false,
"publishConfig": {
"access": "public"
},
"author": {
"name": "Nhuy Van"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nhuyvan/lazy-pipeline.git"
},
"homepage": "https://github.com/nhuyvan/lazy-pipeline.git",
"license": "MIT",
"keywords": [
"lazy pipeline",
"stream",
"lazy evaluation",
"reusable pipeline",
"tree-shakable pipeline"
],
"scripts": {
"prepare": "husky install && cd benchmark-test && npm i && cd ../lib && npm i",
"test": "cd lib && npm run test",
"build:dev": "cd lib && npm run build:dev",
"build:prod": "cd lib && npm run build:prod",
"publish": "npm run build:prod && cd lib && cd dist && npm publish",
"benchmark": "cd benchmark-test && npm run benchmark"
},
"devDependencies": {
"eslint": "^8.8.0",
"husky": "^7.0.4",
"prettier": "^2.7.1"
},
"lint-staged": {
"**/*.ts": [
"prettier -w",
"eslint --cache --fix"
],
"**/*.md": [
"prettier -w"
]
}
}