-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.07 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.07 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
{
"name": "@openreasoning/parser",
"version": "0.1.0",
"description": "Parser for various forms of logical statements",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"lint": "eslint \"src/**/*.ts\" && eslint \"test/**/*.ts\"",
"test": "jest --verbose",
"coveralls": "cat coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OpenReasoning/parser.js.git"
},
"author": "Matthew Peveler <matt.peveler@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/OpenReasoning/parser.js/issues"
},
"homepage": "https://github.com/OpenReasoning/parser.js#readme",
"devDependencies": {
"@types/jest": "^25.2.3",
"@types/node": "^10.17.28",
"@typescript-eslint/eslint-plugin": "^3.9.0",
"@typescript-eslint/parser": "^3.9.0",
"coveralls": "^3.0.3",
"eslint": "^7.7.0",
"jest": "^25.5.4",
"ts-jest": "^25.5.1",
"typescript": "^3.4.5"
},
"dependencies": {},
"engines": {
"node": ">=10"
}
}