-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
121 lines (121 loc) · 3.83 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "@api-modeling/domain-modeler",
"description": "Domain modeling application by MuleSoft, a Salesforce company",
"version": "0.1.0",
"main": "index.js",
"license": "MIT",
"keywords": [
"api-modeling",
"application",
"domain-modeling"
],
"authors": [
"Pawel Psztyc"
],
"contributors": [
"Your name can be here!"
],
"repository": {
"type": "git",
"url": "git://github.com/api-modeling/domain-modeler.git"
},
"bugs": {
"url": "https://github.com/api-modeling/domain-modeler/issues",
"email": "[email protected]"
},
"scripts": {
"start": "es-dev-server --app-index index.html --node-resolve --open --watch --preserve-symlinks --dedupe",
"lint:eslint": "eslint --ext .js,.html . --ignore-path .gitignore",
"format:eslint": "eslint --ext .js,.html . --fix --ignore-path .gitignore",
"lint:prettier": "prettier \"**/*.js\" --check --ignore-path .gitignore",
"format:prettier": "prettier \"**/*.js\" --write --ignore-path .gitignore",
"lint": "npm run lint:eslint && npm run lint:prettier",
"format": "npm run format:eslint && npm run format:prettier",
"test": "karma start --coverage",
"test:watch": "karma start --auto-watch=true --single-run=false",
"test:sl": "karma start karma.sl.config.js --compatibility auto --coverage",
"build": "rimraf dist && rollup -c rollup.config.js",
"start:build": "npm run build && es-dev-server --root-dir dist --app-index index.html --open --compatibility none"
},
"dependencies": {
"@advanced-rest-client/arc-overlay-mixin": "^1.1.5",
"@anypoint-web-components/anypoint-button": "^1.1.1",
"@anypoint-web-components/anypoint-dialog": "^0.1.3",
"@anypoint-web-components/anypoint-input": "^0.2.20",
"@anypoint-web-components/anypoint-input-combobox": "^0.1.1",
"@anypoint-web-components/anypoint-item": "^1.0.7",
"@anypoint-web-components/anypoint-listbox": "^1.1.4",
"@anypoint-web-components/anypoint-menu-button": "^0.1.1",
"@anypoint-web-components/anypoint-styles": "^1.0.1",
"@api-components/amf-helper-mixin": "^4.1.7",
"@api-modeling/modeling-amf-mixin": "^0.3.20",
"@api-modeling/modeling-editors-ui": "^0.1.0",
"@api-modeling/modeling-events": "^0.2.17",
"@api-modeling/modeling-front-store": "^0.2.12",
"@api-modeling/modeling-icons": "^0.1.5",
"@api-modeling/modeling-project-ui": "^0.1.10",
"@api-modeling/modeling-visualization": "^0.1.3",
"@github/time-elements": "^3.1.1",
"@open-wc/scoped-elements": "^1.1.2",
"@types/pouchdb": "^6.4.0",
"elix": "^14.0.0",
"lit-element": "^2.2.1",
"lit-element-router": "^2.0.3",
"lit-html": "^1.1.2",
"pouchdb": "^7.2.2"
},
"devDependencies": {
"@advanced-rest-client/testing-karma-sl": "^1.4.0",
"@open-wc/building-rollup": "^1.5.0",
"@open-wc/eslint-config": "^2.0.0",
"@open-wc/testing": "^2.5.19",
"@open-wc/testing-karma": "^4.0.1",
"deepmerge": "^4.2.2",
"es-dev-server": "^1.57.1",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.11.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"prettier": "^2.0.4",
"rimraf": "^3.0.2",
"rollup": "^2.23.0",
"sinon": "^9.0.2",
"ts-lit-plugin": "^1.2.1",
"typescript": "^3.9.7",
"typescript-lit-html-plugin": "^0.9.0"
},
"eslintConfig": {
"extends": [
"@open-wc/eslint-config",
"eslint-config-prettier"
],
"overrides": [
{
"files": [
"**/*.js"
],
"rules": {
"no-plusplus": "off",
"class-methods-use-this": "off"
}
}
]
},
"prettier": {
"singleQuote": true,
"arrowParens": "always"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix"
]
},
"publishConfig": {
"access": "private"
}
}