-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.67 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
57
58
{
"name": "@fieldguide/pipeline",
"description": "A toolkit to easily build synchronous process pipelines in TypeScript/JavaScript",
"version": "0.1.0",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"dev": "tsc --noEmit --watch",
"prepack": "npm run build",
"build": "tsup",
"eslint": "eslint --ext .js,.ts --cache --cache-location=node_modules/.cache/eslint --cache-strategy content .",
"eslint:fix": "npm run eslint -- --fix",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write .",
"test": "NODE_PATH=./src jest --onlyChanged --watch --runInBand --detectOpenHandles",
"test:ci": "NODE_PATH=./src jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Fieldguide/pipeline.git"
},
"files": [
"build/"
],
"keywords": [
"javascript",
"pipeline",
"synchronous",
"chain",
"processing"
],
"author": "Fieldguide",
"license": "MIT",
"bugs": {
"url": "https://github.com/Fieldguide/pipeline/issues"
},
"homepage": "https://github.com/Fieldguide/pipeline#readme",
"devDependencies": {
"@babel/core": "^7.21.8",
"@babel/preset-env": "^7.21.5",
"@babel/preset-typescript": "^7.21.5",
"@tsconfig/node18": "^18.2.2",
"@types/jest": "^29.5.1",
"@types/lodash": "^4.14.194",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-unused-imports": "^3.0.0",
"jest": "^29.5.0",
"prettier": "^3.2.4",
"tsup": "^8.3.0",
"typescript": "^5.0.4"
},
"dependencies": {
"lodash": "^4.17.21"
}
}