-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 3.2 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@fapfop/core",
"version": "0.0.45",
"description": "Function Oriented Programming (FOP) in Typescript",
"main": "index.js",
"types": "index.d.ts",
"author": "David Shekunts <ditreyw@gmail.com>",
"scripts": {
"lint-staged": "lint-staged",
"lint:check": "eslint --max-warnings 0 --format stylish \"src/**/*.ts{,x}\"",
"lint:fix": "eslint --fix --max-warnings 0 --format stylish \"src/**/*.ts{,x}\"",
"prettier:check": "prettier --check \"src/**/*.ts\"",
"prettier:write": "prettier --write \"src/**/*.ts\"",
"spell:check": "cspell \"{README.md,CODE_OF_CONDUCT.md,CONTRIBUTING.md,.github/*.md,src/**/*.ts}\"",
"beatify:check": "npm run spell:check && npm run lint:check && npm run prettier:check",
"beatify:write": "npm run spell:check && npm run lint:fix && npm run prettier:write",
"clean": "rimraf ./lib",
"prebuild": "npm run clean",
"build:lib": "tsc -P tsconfig.build.json",
"build:es": "tsc -P tsconfig.build-es6.json",
"build": "npm run build:lib && npm run build:es",
"copy-assets": "cp package.json ./lib && cp README.md ./lib",
"test:unit": "jest --config jest.config.unit.json",
"test": "npm run test:unit",
"publish:prerelease": "npm run beatify:check && npm run build && standard-version --prerelease && npm run copy-assets && cd ./lib && npm publish",
"publish:patch": "npm run beatify:check && npm run build && standard-version --release-as patch && npm run copy-assets && cd ./lib && npm publish",
"publish:minor": "npm run beatify:check && npm run build && standard-version --release-as minor && npm run copy-assets && cd ./lib && npm publish",
"publish:major": "npm run beatify:check && npm run build && standard-version --release-as major && npm run copy-assets && cd ./lib && npm publish"
},
"lint-staged": {
"**/*.{ts,tsx}": [
"npm run beatify:check"
],
"**/*.{js,yml,yaml,json,md}": [
"npm run prettier:check"
]
},
"repository": {
"type": "git",
"url": "https://github.com/Dionid/fapfop.git"
},
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "17.4.2",
"@commitlint/config-conventional": "17.4.2",
"@types/jest": "^27.0.3",
"@types/node": "^16.11.7",
"@types/prettier": "^2.4.1",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"cspell": "^6.26.3",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-formatter-gitlab": "^4.0.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.27.5",
"husky": "^8.0.3",
"jest": "^27.3.1",
"jest-junit": "^15.0.0",
"lint-staged": "^13.1.2",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"standard-version": "^9.3.1",
"ts-jest": "^27.0.7",
"typescript": "^4.9.5"
},
"bugs": {
"url": "https://github.com/Dionid/fapfop/issues"
},
"homepage": "https://github.com/Dionid/fapfop",
"tags": [
"typescript",
"algebraic-data-types",
"functional-programming"
],
"keywords": [
"typescript",
"algebraic-data-types",
"functional-programming"
],
"dependencies": {
"uuid": "^9.0.0"
}
}