-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.31 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
44
45
46
47
48
49
{
"name": "jspsychhardware",
"version": "1.0.0",
"description": "A Chrome Extension permitting jsPsych program to access local hardware",
"main": "app/background.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack --watch",
"build": "webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rivasd/jsPsychHardware.git"
},
"keywords": [
"jsPsych",
"chrome-extension",
"hardware",
"browser"
],
"author": "Daniel Rivas",
"license": "ISC",
"bugs": {
"url": "https://github.com/rivasd/jsPsychHardware/issues"
},
"homepage": "https://github.com/rivasd/jsPsychHardware#readme",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.2.3",
"@babel/runtime": "^7.2.0",
"@types/chrome": "0.0.76",
"babel-preset-es2015": "^6.18.0",
"copy-webpack-plugin": "^4.6.0",
"css-loader": "^2.0.1",
"file-loader": "^2.0.0",
"html-webpack-plugin": "^3.2.0",
"raw-loader": "^1.0.0",
"style-loader": "^0.23.1",
"webpack": "^4.20.2",
"webpack-chrome-extension-reloader": "^1.0.1",
"webpack-cli": "^3.1.1"
},
"dependencies": {
"babel-loader": "^8.0.4",
"muse-js": "^3.1.0",
"streamsaver": "^1.0.1"
}
}