-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 1.71 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
{
"name": "human-logic",
"version": "2.0.4",
"description": "Human Logic",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"all": "yarn lint && yarn test && yarn build && yarn docs",
"test": "npx jest",
"test:watch": "npx jest --watch",
"lint": "npx eslint -c .eslintrc.js --ext .ts src",
"build": "npx tsc -p tsconfig-dist.json",
"docs": "typedoc src",
"prepublishOnly": "yarn lint && yarn test",
"prepare": "yarn build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arturania/human-logic.git"
},
"keywords": [
"logic",
"multivalued",
"fuzzy",
"mathematical",
"math",
"descrete",
"common",
"sense",
"human"
],
"author": "ArtUrania <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/arturania/human-logic/issues"
},
"homepage": "https://github.com/arturania/human-logic#readme",
"engines": {
"node": ">= 6.0.0"
},
"devDependencies": {
"@babel/core": "^7.23.2",
"@babel/eslint-parser": "^7.22.15",
"@babel/plugin-transform-class-properties": "^7.22.5",
"@babel/preset-env": "^7.23.2",
"@babel/preset-typescript": "^7.23.2",
"@types/jest": "^29.5.6",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"eslint": "^8.52.0",
"eslint-config-last": "^0.0.5",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-prettier": "^5.0.1",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"typedoc": "^0.25.2",
"typescript": "^5.2.2"
},
"dependencies": {
"tslib": "^2.6.2"
}
}