-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.13 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
{
"name": "storyaxe-ci",
"version": "0.0.10",
"description": "",
"main": "build/index.js",
"scripts": {
"build": "./node_modules/.bin/babel index.js --out-dir build",
"prepublish": "npm run build"
},
"keywords": [
"a11y",
"axe",
"storybook"
],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/plugin-transform-async-to-generator": "^7.5.0",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.5.5"
},
"dependencies": {
"@babel/runtime": "^7.5.5",
"axe-core": "^3.3.1",
"colors": "^1.3.3",
"minimist": "^1.2.0",
"puppeteer": "^1.19.0",
"puppeteer-cluster": "^0.17.0"
},
"bin": {
"storyaxe": "build/index.js"
},
"babel": {
"presets": [
"@babel/preset-env"
],
"plugins": [
[
"@babel/plugin-transform-runtime",
{
"regenerator": true
}
],
"@babel/plugin-transform-async-to-generator",
"@babel/plugin-proposal-object-rest-spread"
]
}
}