-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.48 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
55
56
57
58
59
60
{
"name": "ht-schema",
"version": "3.4.1",
"description": "ht-schema",
"main": "lib/index.js",
"directories": {
"test": "test"
},
"scripts": {
"pretest": "standard",
"test": "./node_modules/.bin/mocha -r babel-register --recursive --reporter spec --bail --check-leaks",
"build": "node ./node_modules/.bin/babel src -d lib",
"coverage": "./node_modules/.bin/nyc --reporter=lcov npm test",
"push-coverage": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/hudson-taylor/ht-schema.git"
},
"keywords": [
"schema",
"json",
"validate",
"validator",
"hudson-taylor"
],
"author": "Hudson-Taylor developers",
"contributors": [
{
"name": "Pomke",
"email": "[email protected]"
},
{
"name": "Adam Brady",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/hudson-taylor/ht-schema/issues"
},
"homepage": "https://github.com/hudson-taylor/ht-schema",
"dependencies": {
"clone": "^2.0.0",
"isemail": "^1.2.0",
"sanitizer": "^0.1.2"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.18.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.18.0",
"babel-register": "^6.18.0",
"coveralls": "^2.11.14",
"mocha": "^3.1.2",
"nyc": "^8.4.0",
"standard": "^8.5.0"
}
}