forked from Aalto-LeTech/jsav-exercise-player
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 789 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 789 Bytes
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
{
"name": "jsav-player-client",
"version": "1.0.0",
"description": "Application to replay algorithm visualization exercises",
"main": "player.js",
"scripts": {
"start": "nohup chromium-browser player.html &>/dev/null &",
"test": "jest --watch --verbose",
"lint": "npx eslint --fix .",
"build": "browserify player.js > build/player-bundle.js"
},
"keywords": [
"jsav"
],
"author": "Giacomo Mariani",
"license": "ISC",
"devDependencies": {
"eslint": "^7.17.0",
"eslint-config-google": "^0.14.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.1.0",
"jest": "^26.6.3"
},
"dependencies": {}
}