-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
90 lines (90 loc) · 2.86 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
87
88
89
90
{
"name": "ontouml-js",
"version": "0.5.0",
"description": "Javascript library utility for manipulating OntoUML models.",
"license": "Apache-2.0",
"repository": "github:OntoUML/ontouml-js",
"engines": {
"node": ">= 14"
},
"main": "dist/index.js",
"files": [
"dist/**/*",
"resources/**/*",
"@types/**/*"
],
"scripts": {
"start": "npm-run-all -p format:watch start:watch",
"start:watch": "TS_NODE_FILES=true nodemon index.ts",
"format": "prettier --write \"**/*.ts\" \"**/*.json\"",
"format:watch": "onchange '**/*.ts' '**/*.json' -- prettier --write {{changed}}",
"clean": "rimraf coverage dist tmp",
"build": "rm -rf ./dist && npm run build:js && npm run build:types && npm run build:alias",
"build:js": "babel src --out-dir dist --extensions \".ts,.tsx\" --source-maps inline",
"build:types": "tsc-silent -p tsconfig.release.json --suppress @",
"build:alias": "tsc-alias -p tsconfig.release.json",
"build:watch": "TS_NODE_FILES=true tsc -w -p tsconfig.release.json",
"tsdoc": "typedoc --out tsdoc src/index.ts",
"lint": "tslint -c tslint.json -p tsconfig.json 'src/**/*.ts'",
"test": "jest",
"test:coverage": "jest --coverage",
"test:clear": "jest --clearCache",
"test:watch": "jest --watch"
},
"_moduleAliases": {
"@test-models": "test_models",
"@constants": "src/constants",
"@error": "src/error",
"@libs": "src/libs",
"@utils": "src/utils",
"@resources": "resources"
},
"dependencies": {
"@babel/runtime": "^7.12.13",
"@types/n3": "^1.4.4",
"ajv": "^7.1.1",
"esm": "^3.2.25",
"language-tags": "^1.0.5",
"lodash": "^4.17.21",
"n3": "^1.8.0",
"ontouml-schema": "^0.2.4",
"tslib": "~1.10.0",
"uniqid": "^5.3.0",
"validate.io-uri": "^1.0.0"
},
"devDependencies": {
"@babel/cli": "^7.12.16",
"@babel/core": "^7.12.16",
"@babel/plugin-proposal-class-properties": "^7.12.13",
"@babel/plugin-proposal-optional-chaining": "^7.12.16",
"@babel/plugin-transform-runtime": "^7.12.15",
"@babel/preset-env": "^7.12.16",
"@babel/preset-typescript": "^7.12.16",
"@babel/register": "^7.12.13",
"@types/jest": "^24.9.1",
"@types/lodash": "^4.14.168",
"@types/node": "^10.17.51",
"babel-jest": "^24.9.0",
"babel-loader": "^8.2.2",
"babel-plugin-module-resolver": "^4.1.0",
"dotenv": "^8.2.0",
"husky": "^3.1.0",
"jest": "^26.3.0",
"module-alias": "^2.2.2",
"nodemon": "^1.19.4",
"npm-run-all": "^4.1.5",
"onchange": "^6.1.1",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"ts-jest": "^24.3.0",
"ts-node": "^8.10.2",
"tsc-alias": "^1.3.5",
"tsc-silent": "^1.2.1",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"tslint-microsoft-contrib": "^6.2.0",
"tsutils": "^3.20.0",
"typedoc": "^0.20.28",
"typescript": "^4.1"
}
}