-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
41 lines (41 loc) · 1.34 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
{
"name": "@openenergytools/scl-lib",
"description": "Function library supporting SCL editing",
"license": "Apache-2.0",
"author": "Jakob Vogelsang",
"version": "0.15.6",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"/dist/"
],
"repository": {
"type": "git",
"url": "https://github.com/OpenEnergyTools/scl-lib.git"
},
"scripts": {
"lint": "eslint --ext .ts,.html . --ignore-path .gitignore && prettier \"**/*.ts\" --check --ignore-path .gitignore",
"format": "eslint --ext .ts,.html . --fix --ignore-path .gitignore && prettier \"**/*.ts\" --write --ignore-path .gitignore",
"test": "wtr --coverage",
"test:watch": "wtr --watch --coverage",
"doc": "npx rimraf doc && typedoc --out doc index.ts",
"deploy": "npm run doc && gh-pages --dist 'doc'",
"build": "npx rimraf dist && tsc"
},
"devDependencies": {
"@openscd/open-scd-core": "^0.0.2",
"@types/mocha": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"@web/dev-server-esbuild": "^0.4.1",
"@web/test-runner": "^0.16.1",
"chai": "npm:@esm-bundle/chai@^4.3.4-fix.0",
"concurrently": "^8.0.1",
"eslint": "^8.40.0",
"gh-pages": "^5.0.0",
"prettier": "^3.1.0",
"typedoc": "^0.24.7",
"typescript": "^5.0.4"
}
}