accessibilityjs/package.json

51 строка
1.4 KiB
JSON
Исходник Обычный вид История

2017-06-22 16:36:39 +03:00
{
2017-10-13 13:37:25 +03:00
"name": "accessibilityjs",
2018-03-09 19:02:00 +03:00
"version": "1.1.1",
"description": "Client side accessibility error scanner.",
"main": "dist/index-umd.js",
"module": "dist/index-esm.js",
2017-10-06 17:39:56 +03:00
"files": [
"dist"
],
2017-06-22 16:36:39 +03:00
"scripts": {
"prebuild": "npm run clean && mkdir dist",
"prepublishOnly": "npm run build",
"clean": "rm -rf dist",
"pretest": "eslint index.js && npm run build",
"test": "karma start ./test/karma.config.js",
2017-10-06 04:44:08 +03:00
"build": "npm run build-esm && npm run build-umd",
"build-esm": "BABEL_ENV=esm babel index.js -o dist/index-esm.js",
"build-umd": "BABEL_ENV=umd babel index.js -o dist/index-umd.js",
"preexample": "npm run pretest",
"example": "open \"file://$(pwd)/example.html\""
2017-06-22 16:36:39 +03:00
},
"repository": {
"type": "git",
"url": "git+https://github.com/github/accessibilityjs.git"
},
2017-10-06 17:39:56 +03:00
"keywords": [
"accessibility",
"a11y"
],
2017-10-06 05:25:13 +03:00
"author": "GitHub, Inc.",
2017-06-22 16:36:39 +03:00
"license": "MIT",
"bugs": {
"url": "https://github.com/github/accessibilityjs/issues"
},
2017-06-27 17:39:50 +03:00
"homepage": "https://github.com/github/accessibilityjs#readme",
"devDependencies": {
2017-10-06 04:30:42 +03:00
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.1.2",
"eslint": "^4.8.0",
2017-11-06 06:02:59 +03:00
"eslint-plugin-github": "^0.18.0",
"karma": "^1.7.1",
2017-10-10 18:21:02 +03:00
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-firefox-launcher": "^1.0.1",
"karma-mocha": "^1.3.0",
"mocha": "^4.0.1"
2017-06-27 17:39:50 +03:00
}
2017-06-22 16:36:39 +03:00
}