forked from dequelabs/axe-core-gems
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
27 lines (27 loc) · 1.3 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
{
"name": "axe-matchers",
"version": "2.4.0",
"license": "MPL-2.0",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/dequelabs/axe-matchers.git"
},
"scripts": {
"setup": "rm -rf ./package-lock.json && npm install && rm -rf ./Gemfile.lock && bundle install",
"test:examples:cucumber-watir": "cd examples/watir && rm -rf ./Gemfile.lock && bundle install && bundle exec cucumber",
"test:examples:cucumber-selenium": "cd examples/selenium && rm -rf ./Gemfile.lock && bundle install && bundle exec cucumber",
"test:examples:cucumber-capybara": "cd examples/capybara && rm -rf ./Gemfile.lock && bundle install && bundle exec cucumber",
"test:examples:rspec-capybara": "cd examples/rspec-capybara && rm -rf ./Gemfile.lock && bundle install && bundle exec rspec",
"test:examples": "npm run test:examples:cucumber-watir && npm run test:examples:cucumber-selenium && npm run test:examples:cucumber-capybara && npm run test:examples:rspec-capybara",
"test": "rspec",
"changelog": "standard-version -a --skip.tag=true --skip.commit=true --skip.bump=true",
"format": "bundle exec rubocop --config rubocop.yml --auto-correct --fix-layout"
},
"dependencies": {
"axe-core": "^3.3.0"
},
"devDependencies": {
"standard-version": "^5.0.2"
}
}