-
Notifications
You must be signed in to change notification settings - Fork 438
/
package.json
24 lines (24 loc) · 1 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
{
"name": "isso",
"author": "Martin Zimmermann",
"description": "lightweight Disquis alternative",
"license": "MIT",
"repository": "github:isso-comments/isso",
"scripts": {
"test": "jest --config isso/js/jest.config.js isso/js/tests/",
"test-unit": "jest --config isso/js/jest-unit.config.js isso/js/tests/unit/",
"test-integration": "jest --runInBand --config isso/js/jest-integration.config.js isso/js/tests/integration/",
"test-screenshots": "jest --runInBand --config isso/js/jest-integration.config.js isso/js/tests/screenshots/",
"build-dev": "webpack --config isso/js/webpack.config.js --config-name dev",
"watch-dev": "webpack --config isso/js/webpack.config.js --config-name dev --watch",
"build-prod": "webpack --config isso/js/webpack.config.js --merge --config-name dev --config-name prod"
},
"devDependencies": {
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"optionalDependencies": {
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0"
}
}