-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.41 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": "pipeable-es-fns",
"version": "1.0.0",
"description": "A opinionated pipeable ES6+ util functions.",
"tags": [
"typescript",
"ECMAScript",
"functional-programming"
],
"keywords": [
"typescript",
"ECMAScript",
"functional-programming"
],
"main": "dist/lib/index.js",
"module": "dist/es6/index.js",
"typings": "dist/lib/index.d.ts",
"sideEffects": "false",
"dependencies": {},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"eslint": "^8.4.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.3",
"prettier": "^2.5.1",
"typescript": "^4.5.4"
},
"scripts": {
"jest-clear-cache": "jest --clearCache",
"prettier": "prettier --list-different \"./{src,test,examples,scripts}/**/*.ts\"",
"fix-prettier": "prettier --write \"./{src,test,examples,scripts}/**/*.ts\"",
"jest": "jest",
"test": "npm run lint && npm run prettier && npm run jest-clear-cache && npm run jest",
"clean": "rimraf ./dist",
"prebuild": "npm run clean",
"build": "tsc -p ./tsconfig.build.json && tsc -p ./tsconfig.build-es6.json",
"postbuild": "prettier --loglevel=silent --write \"./dist/**/*.ts\"",
"prerelease": "npm run build"
},
"author": "jituanlin",
"repository": "https://github.com/jituanlin/pipeable-es-fns",
"license": "MIT",
"private": false
}