forked from Lumieducation/H5P-Nodejs-library
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.3 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
{
"name": "h5p-editor",
"version": "v0.0.1",
"description": "The H5P-Editor-Nodejs-library is a port of the H5P-Editor-PHP-library for Nodejs.",
"repository": {
"type": "git",
"url": "https://github.com/Lumieducation/H5P-Editor-Nodejs-library"
},
"scripts": {
"postinstall": "npm run download:content",
"uninstall": "rm -rf node_modules",
"download:content": "node scripts/download-examples.js test/data/content-type-cache/real-content-types.json test/data/hub-content",
"ci": "npm run lint && npm run test",
"lint": "eslint ./src",
"test": "jest",
"test:watch": "jest --watch"
},
"author": "Jan Philip Schellenberg",
"dependencies": {
"adm-zip": "^0.4.13",
"ajv": "^6.10.2",
"axios": "^0.19.0",
"crc": "^3.8.0",
"escape-html": "^1.0.3",
"fs-extra": "^8.1.0",
"merge": "^1.2.1",
"mkdirp": "^0.5.1",
"qs": "^6.7.0",
"unzipper": "^0.10.3",
"shortid": "^2.2.14"
},
"devDependencies": {
"axios-mock-adapter": "^1.17.0",
"eslint": "^6.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-jest": "^22.15.0",
"jest": "^24.8.0",
"mockdate": "^2.0.4"
},
"main": "./src/index.js"
}