-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 892 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 892 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "nodejs-css-extractor",
"version": "1.1.0",
"description": "Application web pour extraire le CSS critique d'une page",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"test": "jest --coverage",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage --coverageReporters=text-lcov"
},
"keywords": [
"css",
"critical",
"optimization",
"puppeteer"
],
"author": "",
"license": "MIT",
"dependencies": {
"clean-css": "^5.3.3",
"express": "^4.18.2",
"puppeteer": "^21.0.0"
},
"devDependencies": {
"jest": "^29.7.0",
"nodemon": "^3.0.1",
"supertest": "^6.3.4"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/",
"/logs/"
],
"testMatch": [
"**/__tests__/**/*.test.js"
]
}
}