-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.42 KB
/
package.json
File metadata and controls
49 lines (49 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
{
"name": "@adobe/structured-data-validator",
"version": "1.7.0",
"publishConfig": {
"access": "public"
},
"description": "Structured Data Validator",
"type": "module",
"main": "src/index.js",
"scripts": {
"test": "npm run lint && npm run format && npm run unit-test",
"unit-test": "c8 mocha --recursive 'src/**/*.test.js'",
"lint": "eslint 'src/**/*.js'",
"format": "prettier --single-quote --check .",
"format:fix": "prettier --single-quote --write .",
"semantic-release": "semantic-release",
"semantic-release-dry": "semantic-release --dry-run --no-ci --branches $CI_BRANCH"
},
"keywords": [],
"engines": {
"node": ">=18.0.0"
},
"author": "Adobe",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/adobe/structured-data-validator.git"
},
"bugs": {
"url": "https://github.com/adobe/structured-data-validator/issues"
},
"devDependencies": {
"@eslint/js": "^9.22.0",
"@marbec/web-auto-extractor": "^2.1.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.0",
"@semantic-release/npm": "^13.0.0",
"c8": "^10.1.3",
"chai": "^6.0.0",
"eslint": "^9.22.0",
"eslint-plugin-headers": "^1.2.1",
"globals": "^17.0.0",
"mocha": "^11.1.0",
"prettier": "^3.5.3",
"semantic-release": "^25.0.0",
"sinon": "^21.0.0"
}
}