-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathpackage.json
executable file
·138 lines (138 loc) · 4 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"name": "lab",
"version": "1.17.4",
"description": "Lab Framework",
"keywords": [
"molecule",
"probes",
"graph",
"data",
"visualization",
"svg",
"d3"
],
"homepage": "http://lab.dev.concord.org/",
"contributors": [
"Stephen Bannasch (https://github.com/stepheneb)",
"Piotr Janik (https://github.com/pjanik)",
"Richard Klancer (https://github.com/rklancer",
"Sam Fentress (https://github.com/sfentress)",
"Noah Paessel (https://github.com/knowuh)",
"Aaron Unger (https://github.com/psndcsrv)",
"Dan Damelin (https://github.com/ddamelin)",
"William Day (https://github.com/wday)",
"Scott Cytacki (https://github.com/scytacki)",
"Willy Wu (https://github.com/willy-vvu)",
"Kamal Paul (https://github.com/kamalpaul)",
"Jen Goree (https://github.com/jengoree)",
"Jackson Henry (https://github.com/jacksonhenry3)"
],
"repository": {
"type": "git",
"url": "https://github.com/concord-consortium/lab.git"
},
"engines": {
"node": ">=10.0.0"
},
"jest": {
"testURL": "https://lab.concord.org",
"setupFilesAfterEnv": [
"<rootDir>test/setupTests.js"
],
"transform": {
"^.+\\.js?$": "babel-jest",
"\\.glsl$": "jest-raw-loader",
"\\.tpl$": "jest-raw-loader"
},
"testRegex": "(/test/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"testPathIgnorePatterns": [
"/node_modules/"
],
"coveragePathIgnorePatterns": [
"/node_modules/"
],
"moduleFileExtensions": [
"js",
"json",
"node"
],
"modulePaths": [
"<rootDir>/src/lab"
]
},
"dependencies": {
"backbone": "1.4.0",
"canvg": "1.5.3",
"fastclick": "^1.0.6",
"i18next": "^19.3.1",
"iframe-phone": "^1.2.0",
"jquery-contextmenu": "1.6.7",
"jquery-ui-touch-punch": "^0.2.3",
"markdown": ">=0.5.0",
"mustache": "~4.0.0",
"optimist": ">=0.6.0",
"pixi.js": "1.6.1",
"requirejs": ">=2.1.8",
"screenfull": "^4.0.0",
"seedrandom": "3.0.5",
"selectboxit": "^3.8.2",
"uglify-es": "3.3.9",
"underscore": "1.9.2"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"@babel/register": "^7.8.3",
"@webpack-cli/init": "^0.3.0",
"babel-loader": "^8.0.6",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"canvas": "^2.6.1",
"chai": ">=1.7.2",
"cheerio": "1.0.0-rc.3",
"css-loader": "^3.4.2",
"d3": "^3.5.17",
"esm": "^3.2.25",
"html-webpack-plugin": "^4.0.0-beta.11",
"http-server": "^0.12.1",
"jade": ">=0.35.0",
"jest": "^25.1.0",
"jest-raw-loader": "^1.0.1",
"jquery": "2.2.4",
"jquery-ui-dist": "1.12.1",
"jsdom": "^16.2.0",
"jshint": "2.11.0",
"mini-css-extract-plugin": "^0.9.0",
"mkdirp": "0.3.2",
"node-gyp": "^6.1.0",
"node-inspector": "0.3.4",
"node-sass": "^4.14.1",
"npm-run-all": "^4.1.5",
"raw-loader": "^4.0.0",
"remove-files-webpack-plugin": "^1.2.2",
"sass-loader": "^8.0.2",
"should": "3.0.1",
"sinon": "~1.17.7",
"sizzle": ">=1.1.0",
"terser-webpack-plugin": "^2.3.4",
"webpack": "^4.41.6",
"webpack-cli": "^4.2.0"
},
"directories": {
"bin": "node-bin"
},
"scripts": {
"build": "npm-run-all clean submodules build:public build:lab.json build:webpack archive",
"build:production": "npm-run-all clean submodules build:public build:lab.json build:webpack:production archive",
"clean": "rm -rf public",
"submodules": "git submodule update --init --recursive",
"build:public": "mkdir -p public && make public",
"build:lab.json": "node-bin/gen-lab-json",
"build:webpack": "npm run build:lab.version.js && webpack",
"build:webpack:production": "npm run build:lab.version.js && LAB_ENV=production webpack",
"build:lab.version.js": "./node-bin/gen-lab-version",
"archive": "tar czf public/lab.tar.gz -C public lab",
"test": "jest test/jest",
"test:coverage": "jest test/jest --coverage",
"start": "http-server ./public -p 9191"
}
}