-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.01 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.01 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
{
"name": "wp-rocket-scripts",
"version": "1.2.0",
"description": "Rocket main scripts packages",
"type": "module",
"main": "./src/BeaconEntryPoint.js",
"directories": {
"test": "tests"
},
"scripts": {
"test": "mocha test",
"coverage": "c8 --reporter=lcov npm run test",
"build:unmin": "esbuild ./src/BeaconEntryPoint.js --bundle --outfile=dist/wpr-beacon.js",
"build:min": "esbuild ./dist/wpr-beacon.js --allow-overwrite --minify --sourcemap --outfile=dist/wpr-beacon.min.js",
"build": "npm run build:unmin && npm run build:min"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wp-media/rocket-scripts.git"
},
"author": "WP Media Engineering Team",
"license": "ISC",
"bugs": {
"url": "https://github.com/wp-media/rocket-scripts/issues"
},
"homepage": "https://github.com/wp-media/rocket-scripts#readme",
"devDependencies": {
"c8": "^10.1.2",
"esbuild": "0.23.0",
"mocha": "^10.6.0",
"node-fetch": "^3.3.2",
"sinon": "^18.0.0"
}
}