-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
42 lines (42 loc) · 1.07 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
{
"name": "a11y-checker",
"version": "2.2.1",
"description": "Identifies accessibility issues in your code.",
"main": "./src/a11y.js",
"scripts": {
"start": "npm-run-all --parallel dev:server lint:watch",
"dev:server": "webpack-dev-server --hot --inline",
"watch": "webpack -w -d",
"build": "webpack -p",
"lint": "node_modules/.bin/esw webpack.config.* src --color",
"lint:watch": "npm run lint -- --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Muhnad/a11y-checker.git"
},
"bugs": {
"url": "https://github.com/Muhnad/a11y-checker/issues"
},
"keywords": [
"a11y",
"accessibility",
"developers",
"tool",
"testing",
"report"
],
"author": "Muhannad Abdelrazek",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-loader": "^6.4.1",
"babel-preset-es2015": "^6.24.1",
"eslint": "^3.19.0",
"eslint-watch": "^2.1.14",
"npm-run-all": "^4.0.2",
"webpack": "^2.4.1",
"webpack-dev-server": "^2.4.2"
}
}