-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 894 Bytes
/
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
{
"name": "mc-schema",
"version": "0.0.20",
"description": "Very Fast JSON Schema Validator",
"keywords": [
"json",
"schema",
"validator"
],
"homepage": "https://github.com/mctep/mc-schema",
"author": "mctep",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mctep/mc-schema.git"
},
"bugs": {
"url": "https://github.com/mctep/mc-schema/issues"
},
"scripts": {
"test": "./node_modules/coffee-script/bin/coffee ./node_modules/.bin/json-schema-tests test/json-schema-test.coffee && npm run test_old",
"test_old": "node_modules/.bin/_mocha test/json.js"
},
"main": "lib/index.js",
"files": [
"lib",
"LICENSE",
"README.md"
],
"devDependencies": {
"coffee-script": "^1.8.0",
"expect.js": "^0.3.1",
"json-schema-tests": "^0.1.1",
"lodash": "^2.4.1",
"mocha": "^2.1.0"
}
}