-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
45 lines (45 loc) · 1.39 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
{
"name": "pipe-function",
"version": "1.0.1",
"description": "A function to pipe a value through a number of transforms",
"repository": "https://github.com/ivan7237d/pipe-function.git",
"license": "MIT",
"main": "build/main/index.js",
"typings": "build/main/index.d.ts",
"module": "build/module/index.js",
"files": [
"build/main",
"build/module",
"!**/*.test.*"
],
"sideEffects": false,
"scripts": {
"build": "rm -rf build && run-p --print-label build:*",
"build:main": "tsc",
"build:module": "tsc -p tsconfig.module.json",
"test": "run-p --print-label test:*",
"test:tsc": "tsc --noEmit",
"test:lint": "eslint .",
"test:prettier": "prettier --list-different --ignore-unknown '**' '!pnpm-lock.yaml'",
"test:jest": "jest",
"watch": "jest --watch"
},
"devDependencies": {
"@babel/core": "^7.20.2",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@types/jest": "^29.2.3",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-expect-type": "^0.2.1",
"eslint-plugin-jest": "^27.1.7",
"eslint-plugin-prefer-arrow": "^1.2.3",
"jest": "^29.3.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"typescript": "^4.8.3"
}
}