-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 901 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 901 Bytes
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
{
"name": "@lifeomic/termdiff",
"version": "1.0.0",
"description": "Compare ontologies and migrate between them.",
"main": "index.js",
"types": "index.d.ts",
"repository": {},
"author": "LifeOmic <development@lifeomic.com>",
"license": "MIT",
"files": [
"index.*s"
],
"scripts": {
"lint": "eslint . --ext .js,.ts",
"postlint": "tsc",
"test": "jest",
"prepublishOnly": "tsc -p tsconfig.build.json"
},
"devDependencies": {
"@lifeomic/eslint-config-standards": "^2.0.0",
"@lifeomic/jest-config": "^1.0.3",
"@lifeomic/typescript-config": "^1.0.2",
"@types/jest": "^27.0.2",
"eslint": "^8.1.0",
"jest": "^27.3.1",
"jest-circus": "^27.3.1",
"ts-jest": "^27.0.7",
"typescript": "^4.4.4"
},
"dependencies": {
"@types/lodash": "^4.14.176",
"lodash": "^4.17.21"
},
"publishConfig": {
"access": "public"
}
}