-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.09 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
{
"name": "edep",
"version": "1.9.1",
"description": "Editionstools für eine digitale Epigraphik",
"dependencies": {
"@jinntec/fore": "^2.4.1",
"@jinntec/jinn-codemirror": "1.17.2",
"@teipublisher/pb-components": "2.12.10",
"datalist-ajax": "1.0.2"
},
"scripts": {
"test": "web-test-runner --coverage",
"test:watch": "web-test-runner --watch",
"test:build": "gulp test:install",
"clean": "gulp clean",
"build": "gulp build",
"xar": "gulp xar",
"build:all": "gulp build && gulp test:build",
"deploy": "gulp install",
"copy": "gulp copyStatic",
"start": "web-dev-server --node-resolve --watch --open",
"lint": "eslint --ext .js,.html . --ignore-path .gitignore && prettier \"**/*.js\" --check --ignore-path .gitignore",
"format": "eslint --ext .js,.html . --fix --ignore-path .gitignore && prettier \"**/*.js\" --write --ignore-path .gitignore"
},
"devDependencies": {
"@existdb/gulp-exist": "^4.3.1",
"@existdb/gulp-replace-tmpl": "^1.0.4",
"@open-wc/eslint-config": "^4.3.0",
"@open-wc/testing": "next",
"@semantic-release/exec": "^5.0.0",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.2.0",
"@web/dev-server": "^0.1.29",
"@web/test-runner": "^0.13.16",
"axios": "^0.21.1",
"chai": "^4.2.0",
"chai-openapi-response-validator": "^0.9.4",
"delete": "^1.1.0",
"es-dev-server": "^2.1.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"form-data": "^3.0.0",
"gulp": "^4.0.2",
"gulp-rename": "^2.0.0",
"gulp-zip": "^5.1.0",
"husky": "^4.3.8",
"jsdom": "^16.4.0",
"lint-staged": "^10.5.4",
"mocha": "^8.1.3",
"prettier": "^2.3.2",
"semantic-release": "^17.3.2",
"tmp": "^0.2.1"
},
"mocha": {
"timeout": 10000,
"slow": 1000
},
"eslintConfig": {
"extends": [
"@open-wc",
"prettier"
]
},
"prettier": {
"singleQuote": true,
"arrowParens": "avoid"
},
"husky": {
"hooks": {}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write"
]
}
}