-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
57 lines (57 loc) · 1.56 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
{
"name": "djv",
"version": "2.1.4",
"description": "dynamic json-schema validator",
"main": "lib/djv.js",
"browser": "djv.js",
"scripts": {
"build": "webpack",
"changelog": "generate-changelog",
"docs": "jsdoc -r lib/ -d docs/auto",
"lint": "eslint ./lib",
"prepublishOnly": "npm run test && npm run build",
"test": "npm run test:jasmine && npm run lint",
"test:jasmine": "jasmine JASMINE_CONFIG_PATH=package.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/korzio/djv.git"
},
"keywords": [
"json-schema",
"json",
"schema",
"validator",
"validate"
],
"author": "Alexander Korzhikov <korzio@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/korzio/djv/issues"
},
"homepage": "https://github.com/korzio/djv#readme",
"devDependencies": {
"babel-core": "^6.25.0",
"babel-loader": "^7.0.0",
"babel-preset-env": "^1.5.2",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-plugin-import": "^2.7.0",
"generate-changelog": "^1.2.1",
"jasmine": "^2.5.2",
"jsdoc": "^3.5.5",
"json-schema-benchmark": "https://github.com/ebdrup/json-schema-benchmark.git",
"json-schema-test": "^1.3.0",
"json-schema-test-suite": "https://github.com/json-schema/JSON-Schema-Test-Suite.git",
"source-map-loader": "^0.2.1",
"webpack": "^3.0.0"
},
"optionalDependencies": {
"@korzio/djv-draft-04": "^2.0.1"
},
"spec_dir": "test",
"spec_files": [
"**/*.js"
],
"stopSpecOnExpectationFailure": false
}