forked from lyonlai/blessed-vue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.92 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
{
"name": "blessed-vue",
"version": "2.0.1",
"description": "A VueJS runtime to render Blessed to build command line UI.",
"main": "dist/build.js",
"repository": "https://github.com/lyonlai/blessed-vue.git",
"author": "Yun Lai <[email protected]>",
"license": "MIT",
"keywords": [
"vue",
"blessed",
"blessed-contrib",
"command line",
"cli",
"command line ui",
"cli ui",
"curse",
"ncurse",
"graph",
"dashboard"
],
"files": [
"src",
"dist/*.js"
],
"scripts": {
"build": "npm run lint && cross-env NODE_ENV=production rollup -c build/config.js ",
"dev": "cross-env NODE_ENV=development rollup -w -c build/config.js ",
"lint": "eslint src test",
"test": "npm run build && jasmine JASMINE_CONFIG_PATH=test/jasmine.json",
"test-debug": "npm build && node --inspect --debug-brk ./node_modules/.bin/jasmine JASMINE_CONFIG_PATH=test/jasmine.json"
},
"devDependencies": {
"babel-eslint": "^8.2.1",
"babel-helper-vue-jsx-merge-props": "^2.0.3",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-plugin-transform-vue-jsx": "^3.5.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-flow-vue": "^1.0.0",
"babel-register": "^6.24.1",
"buble": "^0.18.0",
"cross-env": "^5.1.3",
"eslint": "^4.16.0",
"eslint-config-vue": "^2.0.2",
"eslint-plugin-flowtype": "^2.30.4",
"eslint-plugin-jasmine": "^2.2.0",
"eslint-plugin-vue": "^4.2.0",
"flow": "^0.2.3",
"jasmine": "^2.5.3",
"rollup": "^0.55.0",
"rollup-plugin-alias": "^1.2.1",
"rollup-plugin-buble": "^0.18.0",
"rollup-plugin-flow-no-whitespace": "^1.0.0",
"rollup-plugin-node-resolve": "^3.0.2",
"rollup-plugin-replace": "^2.0.0",
"rollup-watch": "^4.3.1",
"vue": "^2.5.13"
},
"dependencies": {
"blessed": "^0.1.81",
"blessed-contrib": "^4.8.5",
"lodash": "^4.17.4"
}
}