-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.69 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.69 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
{
"name": "digital-analytics-program",
"version": "4.1.0",
"description": "Provides a JavaScript file for US federal agencies to link or embed in their websites to participate in the Digital Analytics Program.",
"main": "Universal-Federated-Analytics.js",
"type": "module",
"scripts": {
"clean": "rm ./Universal-Federated-Analytics-Min.js",
"lint": "eslint Universal-Federated-Analytics.js",
"cucumber": "cucumber-js",
"cucumber:debug": "VERBOSE=true node --inspect-brk node_modules/@cucumber/cucumber/bin/cucumber-js",
"cucumber:report": "cucumber-js --format \"html\":\"output/test-results.html\"",
"test-site-dev": "docker build --no-cache --build-arg DAP_ENV='dev' -t dap-test-site-dev . && docker run --rm -p 8080:80 --name dap-test-site-dev dap-test-site-dev",
"test-site-stg": "docker build --no-cache --build-arg DAP_ENV='stg' -t dap-test-site-stg . && docker run --rm -p 8080:80 --name dap-test-site-stg dap-test-site-stg",
"test-site-prd": "docker build --no-cache --build-arg DAP_ENV='prd' -t dap-test-site-prd . && docker run --rm -p 8080:80 --name dap-test-site-prd dap-test-site-prd"
},
"repository": {
"type": "git",
"url": "git+https://github.com/digital-analytics-program/gov-wide-code.git"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/digital-analytics-program/gov-wide-code/issues"
},
"homepage": "https://github.com/digital-analytics-program/gov-wide-code#readme",
"devDependencies": {
"@cucumber/cucumber": "^11.3.0",
"chai": "^5.1.1",
"eslint": "^9.8.0",
"eslint-plugin-compat": "^6.0.0",
"eslint-plugin-jsdoc": "^50.2.2",
"puppeteer": "^23.3.0"
},
"dependencies": {
"web-vitals": "^4.2.4"
}
}