-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
54 lines (54 loc) · 1.21 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
53
54
{
"name": "structured-data-testing-tool",
"version": "4.5.0",
"description": "A library and command line tool to help test for Structured Data.",
"repository": "https://github.com/glitchdigital/structured-data-testing-tool",
"main": "index.js",
"bin": {
"sdtt": "bin/cli.js"
},
"scripts": {
"build": "npx pkg bin/cli.js",
"update": "node bin/update-schema-list.js",
"test": "jest --verbose --coverage"
},
"keywords": [
"Structured Data",
"JSON-LD",
"Microdata",
"RDFa",
"Testing"
],
"author": "Iain Collins <[email protected]>",
"license": "ISC",
"dependencies": {
"chalk": "^2.4.2",
"columnify": "^1.5.4",
"csvtojson": "^2.0.10",
"get-stream": "^5.1.0",
"is-stream": "^2.0.0",
"jmespath": "^0.15.0",
"node-fetch": "^2.6.0",
"validator": "^11.0.0",
"web-auto-extractor": "^1.0.17",
"yargs": "^13.2.4"
},
"devDependencies": {
"husky": "^3.0.1",
"jest": "^25.1.0",
"jest-fetch-mock": "^2.1.2",
"pkg": "^4.4.7"
},
"jest": {
"automock": false,
"setupFiles": [
"./jest.setup.js"
]
},
"husky": {
"hooks": {
"pre-commit": "npm test",
"pre-push": "npm test"
}
}
}