-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
41 lines (41 loc) · 986 Bytes
/
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": "monaco-editor-polymer",
"version": "2.0.0",
"description": "A Polymer 2.0 element for Monaco Editor, a browser-based code editor.",
"main": "monaco-elements.html",
"scripts": {
"lint": "npx eslint *.js",
"test": "echo \"Error: no test specified\" && exit 1",
"precommit": "lint-staged"
},
"lint-staged": {
"./*.{js,json,html}": [
"prettier --write",
"git add"
]
},
"keywords": [
"polymer",
"web-components",
"monaco editor",
"code editor",
"code mirror",
"ide"
],
"author": "eterna2 <eterna2@hotmail.com>",
"license": "MIT",
"dependencies": {
"monaco-editor": "^0.10.1"
},
"devDependencies": {
"eslint": "^4.6.1",
"eslint-config-google": "^0.7.0",
"eslint-config-prettier": "^2.5.0",
"eslint-plugin-html": "^3.2.2",
"eslint-plugin-prettier": "^2.3.1",
"husky": "^0.14.3",
"lint-staged": "^4.2.1",
"polymer-cli": "^1.5.4",
"prettier": "^1.7.0"
}
}