forked from MarianiGiacomo/jsav-exercise-player
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.31 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.31 KB
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
49
{
"name": "jsav-player-client",
"version": "2.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": "npx genversion utils/version.js && browserify player.js > build/jsav-exercise-player-bundle.js"
},
"keywords": [
"jsav"
],
"contributors": [
{
"name": "Giacomo Mariani",
"email": "giacomo.mariani@aalto.fi",
"url:": "https://github.com/MarianiGiacomo/"
},
{
"name": "Johanna Sänger",
"email": "johanna.sanger@aalto.fi",
"url": "https://github.com/Meratyn/"
},
{
"name": "Artturi Tilanterä",
"email": "artturi.tilantera@iki.fi",
"url": "https://github.com/atilante/"
}
],
"license": "ISC",
"devDependencies": {
"browserify": "^17.0.0",
"eslint": "^6.8.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.0.1",
"jest": "^28.1.0",
"genversion": "^3.1.1"
},
"dependencies": {
"he": "^1.2.0",
"npm": "^8.13.2"
}
}