-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
48 lines (48 loc) · 1.06 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
{
"name": "sco-parser",
"version": "2.0.1",
"description": "A simple validator and parser for SCO zip files.",
"main": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"test": "tap tests/*Tests.js",
"verify": "node node_modules/izy-proxy/cli.js callpretty scorm?verify"
},
"repository": {
"type": "git",
"url": "git://github.com/Mindflash/node-sco-parser.git"
},
"keywords": [
"SCORM",
"SCO",
"SCORM 1.2",
"LMS"
],
"author": "Mindflash <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Mindflash/node-sco-parser/issues"
},
"engines": {
"node": ">=4"
},
"homepage": "https://github.com/Mindflash/node-sco-parser",
"devDependencies": {
"tap": "^11.1.2"
},
"dependencies": {
"adm-zip": "0.4.4",
"async": "^2.6.0",
"bluebird": "^3.5.3",
"fs-tools": "^0.3.0",
"lodash": "~2.4.1",
"npm-check": "^5.5.2",
"rimraf": "^2.6.2",
"xml2js": "~0.4.19",
"xmldom": "^0.1.27",
"xpath": "0.0.27",
"izy-proxy": "7.3.5"
}
}