ajv/package.json

78 lines
2.4 KiB
JSON
Raw Normal View History

2015-05-20 03:55:53 +03:00
{
2015-05-30 01:32:47 +03:00
"name": "ajv",
"version": "3.5.3",
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",
"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-02-02 21:55:02 +03:00
"eslint": "eslint lib/*.js lib/compile/*.js",
"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",
"test-cov": "istanbul cover -x '**/spec/**' node_modules/mocha/bin/_mocha -- spec/*.spec.js -R spec",
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",
2016-02-02 21:55:02 +03:00
"test": "npm run jshint && npm run eslint && 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
},
"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",
"validator"
],
"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.0.0",
2015-12-06 01:23:57 +03:00
"coveralls": "^2.11.4",
"dot": "^1.0.3",
2016-02-05 01:36:12 +03:00
"eslint": "^2.0.0-rc.0",
"glob": "^6.0.4",
"istanbul": "^0.4.2",
"js-beautify": "^1.5.6",
2015-08-27 22:55:44 +03:00
"jshint": "^2.8.0",
"json-schema-test": "^1.1.1",
"karma": "^0.13.3",
"karma-chrome-launcher": "^0.2.0",
"karma-mocha": "^0.2.0",
"karma-phantomjs-launcher": "^0.2.1",
"karma-sauce-launcher": "^0.3.0",
"mocha": "^2.2.5",
"nodent": "^2.3.13",
"phantomjs": "^2.1.2",
"pre-commit": "^1.1.1",
"regenerator": "^0.8.42",
"require-globify": "^1.3.0",
2015-12-27 19:43:56 +03:00
"uglify-js": "^2.6.1",
"watch": "^0.17.1"
2015-05-20 03:55:53 +03:00
}
}