-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
47 lines (47 loc) · 1.41 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
{
"name": "vue2-brace-editor",
"version": "1.0.6",
"description": "A Vue component for integrating ace editor using brace",
"main": "dist/vue-ace.min.js",
"scripts": {
"clean": "rimraf lib dist",
"build:lib": "babel src --out-dir lib",
"build:umd": "webpack src/index.js dist/vue-ace.js --config webpack.config.dev.js",
"build:umd:min": "webpack src/index.js dist/vue-ace.min.js --config webpack.config.prod.js",
"build": "yarn run build:lib && yarn run build:umd && yarn run build:umd:min"
},
"keywords": [
"ace",
"ace editor",
"vue-component",
"vue",
"brace",
"web editor"
],
"repository": "https://github.com/Hector101/vue2-brace-editor.git",
"author": "hector101 <hector1014really32@gmail.com>",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-loader": "^7.1.2",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-preset-vue": "^2.0.1",
"eslint": "^4.17.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-vue": "^4.2.2",
"uglifyjs-webpack-plugin": "^1.1.8",
"vue": "^2.5.13",
"vue-loader": "^14.1.1",
"vue-template-compiler": "^2.5.13",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.11.1"
},
"dependencies": {
"brace": "^0.11.0"
}
}