ajv/package.json

99 lines
2.9 KiB
JSON
Raw Normal View History

2015-05-20 03:55:53 +03:00
{
2015-05-30 01:32:47 +03:00
"name": "ajv",
2016-12-07 00:37:25 +03:00
"version": "4.9.2",
2015-06-20 20:40:13 +03:00
"description": "Another JSON Schema Validator",
2015-05-30 01:54:01 +03:00
"main": "lib/ajv.js",
"webpack": "dist/ajv.bundle.js",
2016-04-15 22:20:35 +03:00
"typings": "lib/ajv.d.ts",
"files": [
"lib/",
2015-12-29 14:33:37 +03:00
"dist/",
2015-12-05 01:21:49 +03:00
"LICENSE",
".tonic_example.js"
],
2015-05-20 03:55:53 +03:00
"scripts": {
2015-12-14 02:24:48 +03:00
"jshint": "jshint lib/*.js lib/**/*.js --exclude lib/dotjs/**/*",
2016-07-28 02:50:30 +03:00
"eslint": "if-node-version '>=4' eslint lib/*.js lib/compile/*.js spec",
"test-spec": "mocha spec/*.spec.js -R spec",
2015-10-20 00:51:05 +03:00
"test-fast": "AJV_FAST_TEST=true npm run test-spec",
"test-debug": "mocha spec/*.spec.js --debug-brk -R spec",
2016-10-04 23:16:18 +03:00
"test-cov": "nyc npm run test-spec",
"test-ts": "tsc --target ES5 --noImplicitAny lib/ajv.d.ts",
2016-02-08 23:12:04 +03:00
"bundle": "./scripts/bundle . Ajv pure_getters",
"bundle-regenerator": "./scripts/bundle regenerator",
"bundle-nodent": "./scripts/bundle nodent",
2016-01-29 12:26:11 +03:00
"bundle-all": "npm run bundle && npm run bundle-regenerator && npm run bundle-nodent",
2016-02-08 23:12:04 +03:00
"bundle-beautify": "./scripts/bundle js-beautify",
"build": "node scripts/compile-dots.js",
2016-01-29 12:26:11 +03:00
"test-browser": "npm run bundle-all && scripts/prepare-tests && karma start --single-run --browsers PhantomJS",
"test": "npm run jshint && npm run eslint && npm run test-ts && npm run build && npm run test-cov && npm run test-browser",
"prepublish": "npm run build && npm run bundle-all",
"watch": "watch 'npm run build' ./lib/dot"
2015-05-20 03:55:53 +03:00
},
2016-10-04 23:16:18 +03:00
"nyc": {
"exclude": [
"**/spec/**",
"node_modules"
],
"reporter": [
"lcov",
"text-summary"
]
},
2015-05-20 03:55:53 +03:00
"repository": {
"type": "git",
2015-05-30 01:54:01 +03:00
"url": "https://github.com/epoberezkin/ajv.git"
2015-05-20 03:55:53 +03:00
},
"keywords": [
"JSON",
"schema",
2016-03-31 14:34:08 +03:00
"validator",
"validation",
"jsonschema",
"json-schema",
"json-schema-validator",
"json-schema-validation"
2015-05-20 03:55:53 +03:00
],
"author": "Evgeny Poberezkin",
"license": "MIT",
"bugs": {
2015-05-30 01:54:01 +03:00
"url": "https://github.com/epoberezkin/ajv/issues"
2015-05-20 03:55:53 +03:00
},
2015-05-30 01:54:01 +03:00
"homepage": "https://github.com/epoberezkin/ajv",
2015-11-29 01:39:50 +03:00
"tonicExampleFilename": ".tonic_example.js",
2015-05-20 03:55:53 +03:00
"dependencies": {
"co": "^4.6.0",
"json-stable-stringify": "^1.0.1"
2015-05-26 04:11:36 +03:00
},
"devDependencies": {
"bluebird": "^3.1.5",
"brfs": "^1.4.3",
"browserify": "^13.0.0",
"chai": "^3.5.0",
2015-12-06 01:23:57 +03:00
"coveralls": "^2.11.4",
"dot": "^1.0.3",
2016-08-04 00:24:26 +03:00
"eslint": "^3.2.2",
2016-04-16 23:43:18 +03:00
"gh-pages-generator": "^0.2.0",
"glob": "^7.0.0",
"if-node-version": "^1.0.0",
"js-beautify": "^1.5.6",
2015-08-27 22:55:44 +03:00
"jshint": "^2.8.0",
"json-schema-test": "^1.1.1",
"karma": "^1.0.0",
"karma-chrome-launcher": "^2.0.0",
2016-06-26 22:51:54 +03:00
"karma-mocha": "^1.1.1",
"karma-phantomjs-launcher": "^1.0.0",
"karma-sauce-launcher": "^1.1.0",
"mocha": "^3.0.0",
"nodent": "^3.0.2",
"nyc": "^10.0.0",
"phantomjs-prebuilt": "^2.1.4",
"pre-commit": "^1.1.1",
"regenerator": "0.9.5",
"require-globify": "^1.3.0",
"typescript": "^2.0.3",
2015-12-27 19:43:56 +03:00
"uglify-js": "^2.6.1",
"watch": "^1.0.0"
2015-05-20 03:55:53 +03:00
}
}