-
Notifications
You must be signed in to change notification settings - Fork 231
/
package.json
59 lines (59 loc) · 1.74 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
{
"name": "vuido",
"version": "0.2.0",
"description": "Native desktop applications using Vue.js",
"main": "dist/vuido.js",
"files": [
"dist/*.js",
"src"
],
"scripts": {
"build": "npm run build:runtime && npm run build:compiler && npm run build:dom && npm run build:example",
"build:runtime": "webpack --config build/webpack.runtime.config.js",
"build:compiler": "webpack --config build/webpack.compiler.config.js",
"build:dom": "webpack --config build/webpack.dom.config.js",
"build:example": "webpack --config example/build/webpack.config.js",
"example": "node ./example/dist/main.js",
"test": "mocha test/index.js test/spec/**/*.spec.js",
"test:watch": "mocha --watch test/index.js test/spec/**/*.spec.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mimecorg/vuido.git"
},
"keywords": [
"vuido",
"vue",
"libui",
"desktop"
],
"author": "Michał Męciński",
"license": "MIT",
"bugs": {
"url": "https://github.com/mimecorg/vuido/issues"
},
"homepage": "https://github.com/mimecorg/vuido",
"dependencies": {
"libui-node": "^0.2.1"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"chai": "^4.1.2",
"de-indent": "^1.0.2",
"he": "^1.1.1",
"mocha": "^5.2.0",
"mock-require": "^3.0.2",
"sinon": "^6.1.5",
"sinon-chai": "^3.2.0",
"vue": "^2.5.17",
"vue-loader": "^15.3.0",
"vue-template-compiler": "^2.5.17",
"webpack": "^4.16.5",
"webpack-cli": "^3.1.0"
}
}