-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.39 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": "@vijaymarupudi/reaction-time",
"version": "0.1.3",
"author": "Vijay Marupudi <[email protected]>",
"description": "A online psychology experiment library",
"dependencies": {
"afterframe": "^1.0.2",
"cxs": "^6.2.0",
"jspsych": "^7.3.4",
"mithril": "^2.2.2"
},
"devDependencies": {
"@babel/core": "^7.24.4",
"@babel/preset-env": "^7.24.4",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"core-js": "^3.36.1",
"rollup": "^4.14.1",
"rollup-plugin-postcss": "^4.0.2",
"tslib": "^2.6.2",
"typescript": "^5.4.5"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "NODE_ENV=production npx rollup -c && npx tsc",
"dev": "NODE_ENV=development npx rollup -c -w"
},
"main": "./dist/bundles/reaction-time.es.js",
"types": "./dist/types/reaction-time.d.ts",
"license": "LGPL-3.0-or-later",
"files": [
"dist/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/vijaymarupudi/reaction-time.git"
},
"keywords": [
"psychology",
"experiments"
],
"bugs": {
"url": "https://github.com/vijaymarupudi/reaction-time/issues"
},
"homepage": "https://github.com/vijaymarupudi/reaction-time#readme"
}