-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
91 lines (91 loc) · 2.15 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
{
"name": "codemirror-mode-elixir",
"version": "1.1.2",
"description": "A CodeMirror mode for the Elixir language",
"keywords": [
"codemirror",
"elixir",
"mode"
],
"files": [
"dist"
],
"main": "dist/codemirror-mode-elixir.js",
"umd:main": "dist/codemirror-mode-elixir.umd.js",
"module": "dist/codemirror-mode-elixir.m.js",
"scripts": {
"build": "microbundle build index.js --compress false",
"watch": "microbundle watch index.js --compress false",
"site": "webpack",
"start": "webpack-dev-server",
"test": "jest",
"lint": "eslint --ext .js,.vue src index.js"
},
"repository": {
"url": "[email protected]:optick/codemirror-mode-elixir.git",
"type": "git"
},
"author": "Ian Walter <[email protected]>",
"license": "MIT",
"peerDependencies": {
"codemirror": "^5.20.2"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.5",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.4",
"codemirror": "^5.41.0",
"css-loader": "^0.25.0",
"eslint": "^3.9.1",
"eslint-config-standard": "^6.2.1",
"eslint-friendly-formatter": "^2.0.5",
"eslint-loader": "^1.5.0",
"eslint-plugin-html": "^1.5.5",
"eslint-plugin-promise": "^3.3.0",
"eslint-plugin-standard": "^2.0.1",
"html-webpack-plugin": "^3.2.0",
"jest": "^23.6.0",
"microbundle": "^0.7.0",
"mini-css-extract-plugin": "^0.4.4",
"node-sass": "^4.9.4",
"np": "^3.0.4",
"sass-loader": "^7.1.0",
"vue": "^2.5.17",
"vue-loader": "^15.4.2",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.5.17",
"webpack": "^4.25.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10"
},
"browserslist": [
"> 0.25%"
],
"babel": {
"presets": [
"@babel/preset-env"
],
"env": {
"test": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
}
}
]
]
}
}
},
"eslintConfig": {
"root": true,
"extends": [
"standard"
]
}
}