forked from h5p/h5p-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.1 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
{
"version": "0.9.0",
"name": "h5p",
"description": "A helping tool for developing HTML5 Packages.",
"keywords": [
"development",
"developing",
"tool",
"help",
"html5",
"package",
"quiz",
"interactive"
],
"scripts": {
"test": "jasmine",
"jshint": "jshint bin/*.js lib/*.js"
},
"preferGlobal": true,
"homepage": "http://h5p.org",
"author": "Joubel AS",
"repository": {
"type": "git",
"url": "http://github.com/h5p/cli"
},
"bugs": {
"url": "http://github.com/h5p/cli/issues"
},
"directories": {
"lib": "./lib",
"bin": "./bin"
},
"main": "./lib/h5p.js",
"bin": "./bin/h5p-cli.js",
"engines": {
"node": ">=v0.10"
},
"dependencies": {
"archiver": ">=0.8.1",
"body-parser": ">=1.14.1",
"express": ">=4.13.3",
"gitignore-parser": "0.0.2",
"httpdispatcher": ">=0.4.0",
"node.extend": ">=1.1.5",
"request": ">=2.65.0",
"tar-fs": ">=1.8.1",
"cross-spawn": "^5.0.1",
"adm-zip": "^0.4.7"
},
"license": "MIT",
"devDependencies": {
"jasmine": "^2.4.1",
"jshint": "^2.9.1-rc1"
}
}