forked from atomicjolt/open_assessments
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
34 lines (34 loc) · 1.23 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
{
"name": "OpenAssessments",
"version": "1.0.0",
"description": "QTI client and authoring tool written in React.js",
"engines": {
"node": ">7.4.0"
},
"author": "atomicjolt",
"license": "MIT",
"homepage": "https://github.com/atomicjolt/open_assessments",
"scripts": {
"postinstall": "cd ./client && yarn",
"test": "cd client && ./node_modules/jest/bin/jest.js --config=config/jest_config.json",
"watch": "cd client && ./node_modules/jest/bin/jest.js --watch --config=config/jest_config.json",
"hot": "cd ./client && node webpack.hot.js",
"live": "cd ./client && node server.js",
"build_dev": "cd ./client && node ./build.js",
"build": "cd ./client && node ./build.js --release",
"create": "cd ./client && node ./build.js --release && cd .. && ./client/node_modules/s3-website/s3-website.js create",
"release": "cd ./client && node ./build.js --release && cd .. && ./client/node_modules/s3-website/s3-website.js deploy",
"lint": "cd ./client && eslint js"
},
"repository": {
"type": "git",
"url": "https://github.com/atomicjolt/open_assessments"
},
"keywords": [
"react, qti, assessments, quizzes"
],
"dependencies": {
"del": "^2.2.2",
"video.js": "^6.4.0"
}
}