-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.27 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
{
"name": "pa-meta",
"version": "2.0.0",
"description": "Creates and modifies Project Arrhythmia metadata.lsb files.",
"main": "build/index.js",
"scripts": {
"build": "rollup -c --environment BUILD:production",
"dev": "rollup -c",
"watch": "rollup -cw",
"test": "node test/test.js",
"lint": "eslint --ignore-path .eslintignore --ext .js,.ts .",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\""
},
"files": [
"build/**/*"
],
"keywords": [
"pa",
"project arrhythmia",
"meta",
"metadata"
],
"author": "enchart",
"license": "MIT",
"homepage": "https://github.com/PA-Toolkit/pa-meta",
"repository": {
"type": "git",
"url": "git+https://github.com/PA-Toolkit/pa-meta"
},
"bugs": {
"url": "https://github.com/PA-Toolkit/pa-meta/issues"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"prettier": "^2.6.2",
"rollup": "^2.71.1",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-ts": "^2.0.7",
"tslib": "^2.4.0",
"typescript": "^4.6.4"
},
"dependencies": {
"pa-common": "^1.1.3"
}
}