-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.13 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
{
"name": "wct-structured-data-testing",
"version": "1.0.1",
"description": "Helper for testing structured data tool with web component tests",
"main": "index.js",
"devDependencies": {
"chai": "^3.4.1",
"express": "~4.13.4",
"istanbul": "~0.4.2",
"jshint": "~2.9.1",
"mocha": "^2.3.4",
"sinon": "~1.17.3",
"supertest": "~1.2.0"
},
"dependencies": {
"body-parser": "~1.15.0",
"request": "~2.69.0"
},
"scripts": {
"test": "node_modules/.bin/istanbul cover _mocha -- -R spec",
"coverage": "node_modules/.bin/istanbul check-coverage --statement 100 --branches 100 --function 100 --lines 100",
"lint": "node_modules/.bin/jshint test/*.js index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thearegee/wct-structured-data-testing.git"
},
"keywords": [
"polymer",
"web",
"components",
"testing",
"schema.org"
],
"author": "Robin Glen",
"license": "MIT",
"bugs": {
"url": "https://github.com/thearegee/wct-structured-data-testing/issues"
},
"homepage": "https://github.com/thearegee/wct-structured-data-testing#readme"
}