-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.32 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
{
"name": "accessibility-checker-infrastructure",
"version": "1.0.0",
"description": "An example project setup with accessibility checking in place.",
"main": "index.js",
"scripts": {
"dev": "parcel watch src/html/index.html src/html/docker/index.html src/html/local/index.html --hmr-port 1001 --public-url ${PUBLIC_URL}",
"build": "parcel build src/html/index.html src/html/docker/index.html src/html/local/index.html --public-url ${PUBLIC_URL}",
"test": "ROOT_URL=http://localhost:1000 cucumber-js --require ./**/{cucumber-puppeteer,cucumber-puppeteer-axe}/features/**/*.js --require ./test/features/**/*.js test/features/**/*.feature"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Enrise/accessibility-checker-infrastructure.git"
},
"keywords": [
"a11y",
"accessibility"
],
"author": "Enrise",
"license": "MIT",
"bugs": {
"url": "https://github.com/Enrise/accessibility-checker-infrastructure/issues"
},
"homepage": "https://github.com/Enrise/accessibility-checker-infrastructure#readme",
"dependencies": {
"axios": "^0.19.0",
"jquery": "^3.5.0",
"markdown-it": "^10.0.0"
},
"devDependencies": {
"babel-polyfill": "^6.26.0",
"chai": "^4.2.0",
"cucumber-puppeteer-axe": "^1.0.0",
"parcel-bundler": "^1.12.4",
"sass": "^1.22.12"
}
}