-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.2 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.2 KB
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
{
"name": "@openreasoning/predicate-types",
"version": "0.2.0",
"description": "Types of Predicate Logic",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"lint": "eslint \"src/**/*.ts\" && eslint \"test/**/*.ts\"",
"lint:fix": "npm run lint -- --fix",
"tsc-publish": "tsc-publish",
"prepublishOnly": "echo \"Do not run publish directly, run tsc-publish\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OpenReasoning/predicate-types-js.git"
},
"keywords": [
"logic",
"reasoning",
"formal logic"
],
"author": "Matthew Peveler <matt.peveler@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/OpenReasoning/fol-types-js/issues"
},
"homepage": "https://github.com/OpenReasoning/fol-types-js#readme",
"devDependencies": {
"@types/jest": "^26.0.10",
"@typescript-eslint/eslint-plugin": "^3.9.0",
"@typescript-eslint/parser": "^3.9.0",
"eslint": "^7.7.0",
"jest": "^26.4.0",
"ts-jest": "^26.2.0",
"tsc-publish": "^0.5.2",
"typescript": "^3.9.7"
},
"publishConfig": {
"access": "public"
}
}