-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.85 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.85 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@openscd/oscd-editor",
"description": "Function library for basic XML manipulations",
"license": "Apache-2.0",
"author": "OMICRON electronics GmbH",
"version": "1.8.0",
"type": "module",
"main": "./dist/oscd-editor.js",
"types": "./dist/oscd-editor.d.ts",
"files": [
"/dist/"
],
"repository": {
"type": "git",
"url": "https://github.com/openscd/oscd-editor.git"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"lint": "eslint .",
"format": "eslint . --fix",
"semantic-release": "semantic-release",
"test": "npm run build && wtr --coverage",
"test:watch": "npm run build && concurrently -k -r \"tsc -b --watch --preserveWatchOutput\" \"wtr --watch --coverage\"",
"build": "npx rimraf dist && tsc",
"doc": "npx rimraf doc && typedoc --out doc src/oscd-editor.ts",
"prepare": "husky"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@omicronenergy/oscd-test-utils": "^0.0.11",
"@open-wc/testing": "3.2.2",
"@types/mocha": "^10.0.8",
"@typescript-eslint/eslint-plugin": "^8.8.0",
"@typescript-eslint/parser": "^8.8.0",
"@web/test-runner": "0.19.0",
"concurrently": "^9.0.1",
"eslint": "^9.11.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.4.1",
"eslint-plugin-tsdoc": "^0.4.0",
"fast-check": "^3.22.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.0",
"prettier": "^3.5.3",
"rimraf": "^3.0.2",
"semantic-release": "24.1.2",
"sinon": "^21.0.0",
"typedoc": "^0.28.5",
"typescript": "^5.6.2"
},
"dependencies": {
"@openscd/oscd-api": "^0.1.6"
},
"prettier": {
"singleQuote": true,
"arrowParens": "avoid"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write",
"eslint"
]
}
}