-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
53 lines (53 loc) · 1.15 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
50
51
52
53
{
"name": "dallinger",
"version": "0.1.0",
"description": "Dallinger experiment server",
"dependencies": {},
"devDependencies": {
"browser-sync": "^2.18.8",
"browser-sync-webpack-plugin": "^1.1.4",
"fingerprintjs2": "^1.5.1",
"jest": "^23.6.0",
"jsdoc": "^3.6.3",
"uglify-es": "^3.0.28",
"webpack": "^2.4.1"
},
"engines": {
"node": ">= 8.15.0"
},
"scripts": {
"build": "webpack",
"dev": "webpack --watch",
"test": "jest"
},
"jest": {
"collectCoverage": true,
"coverageDirectory": "coverage",
"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"
}