-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.56 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
{
"name": "h5p-nodejs-library",
"version": "v0.4.0",
"description": "The H5P-Nodejs-library is a port of the H5P-PHP-library for Nodejs.",
"repository": {
"type": "git",
"url": "https://github.com/Lumieducation/h5p-nodejs-library"
},
"scripts": {
"prepare": "examples/install.sh",
"start": "node ./examples/server",
"clean": "rm -rf build && rm -rf dist",
"uninstall": "npm run clean && rm -rf node_modules && examples/uninstall.sh",
"build": "",
"ci": "npm run lint && npm run format:check && npm run test && npm run test:content",
"lint": "eslint ./src ./test",
"test": "jest",
"test:watch": "jest --watch",
"test:content": "node test/download_content.ci.js && node test/content.ci.js",
"format:check": "prettier --check \"{src,test}/**/*.js\"",
"format": "prettier --write \"{src,test}/**/*.js\""
},
"author": "Jan Philip Schellenberg",
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"babel-jest": "^24.7.1",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^4.2.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jest": "^22.6.4",
"express": "^4.17.0",
"jest": "^24.7.1",
"jsdom": "^15.1.0",
"prettier": "^1.17.1",
"promise-queue": "^2.2.5",
"puppeteer": "^1.19.0",
"request-promise": "^4.2.4"
},
"main": "./src/index.js"
}