-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
46 lines (46 loc) · 1.16 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
{
"name": "@financial-times/dotcom-build-images",
"version": "0.0.0",
"description": "",
"main": "dist/node/index.js",
"types": "dist/node/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "npm run clean:dist && npm run clean:node_modules",
"clean:dist": "rm -rf dist",
"clean:node_modules": "rm -rf node_modules",
"build:node": "tsc",
"build": "npm run build:node",
"dev": "npm run build:node -- --watch"
},
"keywords": [],
"author": "",
"license": "MIT",
"peerDependencies": {
"webpack": "^4.39.2"
},
"dependencies": {
"file-loader": "^6.0.0",
"glob": "^7.1.6"
},
"devDependencies": {
"@types/webpack": "^4.41.7"
},
"engines": {
"node": "18.x || 20.x",
"npm": "8.x || 9.x || 10.x"
},
"files": [
"dist/",
"src/"
],
"repository": {
"type": "git",
"repository": "https://github.com/Financial-Times/dotcom-page-kit.git",
"directory": "packages/dotcom-build-images"
},
"homepage": "https://github.com/Financial-Times/dotcom-page-kit/tree/HEAD/packages/dotcom-build-images",
"volta": {
"extends": "../../package.json"
}
}