-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
97 lines (97 loc) · 2.65 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "accessibility-webpack-plugin",
"version": "0.2.2",
"description": "Webpack plugin that reports accessibility issues for React applications",
"main": "dist/cjs.js",
"scripts": {
"build:watch": "yarn run build -- --watch",
"build": "cross-env NODE_ENV=production babel src -d dist --ignore 'src/**/*.test.js' --copy-files",
"clean": "del-cli dist src/tmp/*.js",
"lint:fix": "npm run lint -- --fix",
"lint": "eslint --cache src __tests__",
"prepublish": "yarn run build",
"test": "jest",
"webpack-defaults": "webpack-defaults",
"start": "yarn run build -- -w",
"prebuild": "yarn run clean",
"lint-staged": "lint-staged",
"release": "yarn run standard-version",
"security": "nsp check",
"test:watch": "jest --watch",
"test:coverage": "jest --collectCoverageFrom='src/**/*.js' --coverage",
"travis:lint": "yarn run lint && yarn run security",
"travis:test": "yarn run test",
"travis:coverage": "yarn run test:coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/evcohen/accessibility-webpack-plugin.git"
},
"keywords": [
"webpack",
"plugin",
"accessibility",
"a11y",
"react",
"javascript"
],
"author": "Ethan Cohen",
"license": "MIT",
"bugs": {
"url": "https://github.com/evcohen/accessibility-webpack-plugin/issues"
},
"homepage": "https://github.com/evcohen/accessibility-webpack-plugin#readme",
"dependencies": {
"babel-polyfill": "^6.23.0",
"chalk": "^1.1.3",
"fs": "^0.0.1-security",
"html-parse-stringify": "^1.0.2",
"rimraf": "^2.6.1",
"shhh": "^1.0.3",
"tmp": "^0.0.31"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-jest": "^19.0.0",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.4.0",
"babel-preset-es2015": "^6.24.1",
"coveralls": "^2.13.1",
"cross-env": "^4.0.0",
"del-cli": "^0.2.1",
"eslint": "^3.19.0",
"eslint-config-webpack": "^1.2.2",
"eslint-plugin-import": "^2.2.0",
"jest": "^19.0.2",
"lint-staged": "^3.4.1",
"nsp": "^2.6.3",
"pre-commit": "^1.2.2",
"standard-version": "^4.0.0",
"webpack-defaults": "^0.4.6"
},
"jest": {
"coverageReporters": [
"lcov"
],
"coverageDirectory": "reports",
"roots": [
"<rootDir>/__tests__"
]
},
"files": [
"dist"
],
"engines": {
"node": ">= 4.3 < 5.0.0 || >= 5.10"
},
"pre-commit": "lint-staged",
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
}
}