-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.42 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.42 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
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "dallinger",
"version": "0.1.0",
"description": "Dallinger experiment server",
"devDependencies": {
"browser-sync": "^3.0.4",
"browser-sync-webpack-plugin": "^2.4.0",
"fingerprintjs2": "^1.5.1",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"jsdoc": "^4.0.5",
"webpack": "^5.105.2",
"webpack-cli": "^6.0.1"
},
"resolutions": {
"kind-of": "^6.0.3",
"lodash": "^4.17.21",
"**/resp-modifier/minimatch": "^10.2.2",
"**/glob/minimatch": "^10.2.2",
"**/test-exclude/minimatch": "^3.1.2"
},
"engines": {
"node": ">= 8.15.0"
},
"scripts": {
"build": "WEBPACK_ENV=build webpack",
"dev": "webpack --watch",
"test": "jest"
},
"jest": {
"collectCoverage": true,
"coverageDirectory": "coverage",
"testEnvironment": "jsdom",
"roots": [
"<rootDir>/dallinger/"
],
"testPathIgnorePatterns": [
"<rootDir>/node_modules"
],
"coveragePathIgnorePatterns": [
"<rootDir>/node_modules",
".min.js"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/Dallinger/Dallinger.git"
},
"keywords": [
"experiment",
"web",
"social",
"science"
],
"author": "The Regents of the University of California",
"license": "MIT",
"bugs": {
"url": "https://github.com/Dallinger/Dallinger/issues"
},
"homepage": "https://github.com/Dallinger/Dallinger#readme"
}