-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 812 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 812 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
{
"author": "Matt Friedman",
"license": "GPL-2.0",
"dependencies": {
"lightbox2": "^2.11.3"
},
"devDependencies": {
"copyfiles": "^2.4.1",
"npm-run-all": "^4.1.5",
"jest": "^29.0.0",
"jest-environment-jsdom": "^29.0.0"
},
"jest": {
"testEnvironment": "jsdom",
"testMatch": ["**/tests/js/**/*.test.js"],
"collectCoverageFrom": ["styles/all/template/js/**/*.js"],
"setupFilesAfterEnv": ["<rootDir>/tests/js/setup.js"]
},
"scripts": {
"copy-lightbox": "copyfiles --exclude \"node_modules/lightbox2/dist/js/*plus-jquery.*\" -u 3 node_modules/lightbox2/dist/**/* styles/all/template/lightbox",
"test": "jest",
"test:basic": "jest resizer.test.js",
"test:comprehensive": "jest resizer.comprehensive.test.js",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
}
}