-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.42 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.42 KB
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
{
"name": "@financial-times/dotcom-build-base",
"version": "0.0.0",
"description": "The Page Kit CLI",
"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",
"preinstall": "[ \"$INIT_CWD\" != \"$PWD\" ] || npm_config_yes=true npx check-engine"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"clean-webpack-plugin": "^3.0.0",
"compression-webpack-plugin": "^4.0.0",
"webpack-assets-manifest": "^3.1.1",
"webpack-subresource-integrity": "^1.5.2"
},
"devDependencies": {
"@types/webpack": "^4.41.7",
"check-engine": "^1.10.1"
},
"peerDependencies": {
"webpack": "^4.39.2"
},
"engines": {
"node": "16.x || 18.x || 20.x",
"npm": "7.x || 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-base"
},
"homepage": "https://github.com/Financial-Times/dotcom-page-kit/tree/HEAD/packages/dotcom-build-base",
"volta": {
"extends": "../../package.json"
}
}