forked from vatesfr/xo-vmdk-to-vhd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.44 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
{
"name": "xo-vmdk-to-vhd",
"version": "0.0.2",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/vatesfr/xo-vmdk-to-vhd/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/vatesfr/xo-vmdk-to-vhd.git"
},
"keywords": [
"xen",
"orchestra",
"xen-orchestra"
],
"preferGlobal": true,
"engines": {
"node": ">=0.12"
},
"files": [
"lib",
"config.json",
"index.js"
],
"main": "index.js",
"scripts": {
"build": "NODE_ENV=production babel --source-maps --out-dir=lib/ src/",
"depcheck": "dependency-check ./package.json",
"dev": "babel --watch --source-maps --out-dir=dist/ src/",
"test": "mocha --compilers js:babel-core/register --reporter spec --require babel-polyfill && npm run lint && npm run build",
"lint": "standard",
"prepublish": "npm run build"
},
"devDependencies": {
"babel-cli": "^6.0.0",
"babel-core": "^6.3.17",
"babel-eslint": "^6.1.2",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.11.6",
"chai": "^3.5.0",
"mocha": "^3.0.0",
"standard": "^7.0.0"
},
"dependencies": {
"babel-polyfill": "^6.9.1",
"child-process-promise": "^2.0.3",
"deflate-js": "^0.2.3",
"fs-promise": "^0.4.1"
},
"babel": {
"presets": [
"stage-0",
"es2015"
]
},
"standard": {
"ignore": [
"lib"
],
"parser": "babel-eslint"
}
}