-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 775 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 775 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
29
{
"name": "jsquest",
"version": "1.1.1",
"description": "A JavaScript implementation of the QUEST method (Watson & Pelli, 1983).",
"main": "src/jsQUEST.js",
"type": "module",
"dependencies": {
"interp1": "^1.0.13",
"numeric_es6": "github:tpronk/numeric"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.0.0",
"rollup": "^2.50.1",
"rollup-plugin-sourcemaps": "^0.6.3"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kurokida/jsQUEST.git"
},
"author": "Daiichiro Kuroki",
"license": "MIT",
"bugs": {
"url": "https://github.com/kurokida/jsQUEST/issues"
},
"homepage": "https://github.com/kurokida/jsQUEST"
}