-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1.23 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
{
"name": "page-structural-semantics-scanner-tests",
"version": "0.8.0",
"private": true,
"description": "Test and benchmarking suite for code that extracts information on the structure of web pages, such as landmarks, headings and articles",
"license": "MIT",
"author": "Matthew Tylee Atkinson",
"main": "index.js",
"scripts": {
"_build": "npx embedme README.md && git add README.md && node script/combineFixturesExpectations.js && git add combined",
"prebuild": "npm test",
"build": "npm run --silent _build",
"example": "node script/example.js",
"example:setup": "npm link && npm link page-structural-semantics-scanner-tests",
"pretest": "npm run validate && eslint .",
"test": "tap test",
"validate": "ajv test -s schema.json -d 'expectations/*.json' --valid -c ajv-formats",
"version": "npm run build && standard-version --tag-prefix=",
"prepare": "husky install"
},
"husky": {
"hooks": {
"pre-commit": "npm run build"
}
},
"tap": {
"check-coverage": false
},
"devDependencies": {
"ajv-cli": "^5.0.0",
"ajv-formats": "^2.1.1",
"embedme": "^1.22.0",
"eslint": "^8.12.0",
"husky": "^7.0.4",
"standard-version": "^9.3.2",
"tap": "^16.0.1"
}
}