-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.95 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
{
"name": "accessible-components",
"version": "1.0.6",
"description": "",
"keywords": [
"WAI-ARIA",
"accessibility",
"keyboard"
],
"main": "postcss.config.js",
"directories": {
"doc": "docs"
},
"dependencies": {
"@babel/polyfill": "^7.11.5",
"http-server": "^0.12.3"
},
"devDependencies": {
"cypress": "^6.2.1",
"cypress-plugin-tab": "^1.0.5",
"fs-extra": "^9.0.1",
"mochawesome": "^6.1.1",
"mochawesome-merge": "^4.2.0",
"mochawesome-report-generator": "^5.1.0",
"wpdtrt-npm-scripts": "github:dotherightthing/wpdtrt-npm-scripts#semver:0.3.*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dotherightthing/accessible-components.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/dotherightthing/accessible-components/issues"
},
"homepage": "https://github.com/dotherightthing/accessible-components#readme",
"config": {
"wpdtrt_base_url_local": "http://domain.local",
"wpdtrt_npm_scripts": "./node_modules/wpdtrt-npm-scripts"
},
"scripts": {
"changelog": "npm run changelog --prefix $npm_package_config_wpdtrt_npm_scripts",
"compile": "npm run compile --prefix $npm_package_config_wpdtrt_npm_scripts",
"docs": "npm run docs --prefix $npm_package_config_wpdtrt_npm_scripts",
"lint": "npm run lint --prefix $npm_package_config_wpdtrt_npm_scripts",
"release": "npm run release --prefix $npm_package_config_wpdtrt_npm_scripts",
"server": "http-server ./ -c-1 -o",
"test": "npm run test --prefix $npm_package_config_wpdtrt_npm_scripts && npx cypress run",
"test:js": "node build-scripts/cypress.js",
"test:jsui": "npx cypress open",
"version": "npm run version --prefix $npm_package_config_wpdtrt_npm_scripts",
"watch": "nodemon"
},
"eslintConfig": {
"globals": {
"KeyboardHelpers": true,
"Label": true,
"SingleSelectListbox": true,
"TabbedCarousel": true
}
}
}