-
Notifications
You must be signed in to change notification settings - Fork 50
/
package.json
52 lines (52 loc) · 1.69 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
47
48
49
50
51
52
{
"name": "dataverse",
"version": "1.0.0",
"main": "src/index.html",
"license": "MIT",
"scripts": {
"htmlhint": "htmlhint src/*.html test/*.html",
"eslint": "eslint --ext .js src/ test/",
"pretest": "npm run eslint && npm run htmlhint",
"test": "jest --verbose --coverage test/",
"test:e2e": "playwright test",
"test:oas": "jest --verbose tests-read-only/oa/",
"pretest:oas-html": "npm run pretest",
"test:oas-html": "jest --verbose tests-read-only/oa/oa-html.spec.js",
"test:oas-css": "jest --verbose tests-read-only/oa/oa-css.spec.js",
"pretest:oas-js": "npm run pretest",
"test:oas-js": "jest --verbose tests-read-only/oa/oa-javascript.spec.js",
"pretest:oas-web-api": "npm run pretest",
"test:oas-web-api": "jest --verbose tests-read-only/oa/oa-web-api.spec.js",
"pretest:oas-prompting": "npm run pretest",
"test:oas-prompting": "jest --verbose tests-read-only/oa/oa-prompting.spec.js",
"open-coverage-report": "opener ./coverage/lcov-report/index.html",
"start": "serve src/",
"deploy": "gh-pages -d src"
},
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/plugin-transform-modules-commonjs": "^7.6.0",
"@playwright/test": "^1.36.1",
"acorn": "^8.8.2",
"babel-jest": "^27.0.1",
"css": "^3.0.0",
"eslint": "^8.3.0",
"gh-pages": "^3.1.0",
"htmlhint": "^1.0.0",
"jest": "^27.0.1",
"jsdom": "^22.1.0",
"opener": "^1.5.1",
"serve": "^14.2.1"
},
"engines": {
"node": ">=16.x"
},
"bootcamp": {
"createdAt": "2024-05-27T17:56:17.548Z",
"version": "8.7.0",
"commit": "6bfcf3abf54cef1793fffc158785db46b9babb93"
},
"jest": {
"testEnvironment": "jsdom"
}
}