This repository has been archived by the owner on Mar 13, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 2.46 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
{
"name": "makeup-modal",
"description": "Applies modal accessibility requirements to any element",
"version": "0.1.2",
"main": "index.js",
"repository": "https://github.com/makeup-js/makeup-modal.git",
"author": "Ian McBurnie <[email protected]>",
"license": "MIT",
"scripts": {
"start": "npm run build && parallelshell \"npm run server\" \"npm run watch\"",
"test": "karma start --autoWatch false --singleRun true",
"prepublishOnly": "npm run clean && npm run lint && npm run build && npm run test && npm run transpile:module",
"prep": "npm run prepublishOnly",
"build": "npm run transpile:module && npm run build:docs",
"build:docs": "npm run transpile:docs && npm run bundle:docs",
"fix": "eslint src/index.js --fix",
"lint": "eslint src/index.js > lint.txt && eslint docs/src/index.js > lint.txt",
"clean": "npm run clean:docs && npm run clean:tests",
"clean:docs": "rimraf docs/transpiled/index.js",
"clean:tests": "rimraf lint.txt coverage",
"transpile:module": "babel src/index.js --out-file index.js",
"transpile:docs": "mkdirp docs/transpiled && babel docs/src/index.js --out-file docs/transpiled/index.js",
"bundle:docs": "webpack --config webpack.docs.js",
"server": "browser-sync start -s --ss docs --index docs/index.html --files docs/index.html docs/bundled/docs.min.js",
"watch": "onchange src/index.js docs/src/index.js -- npm run build",
"version": "npm run prepublishOnly && git add -A docs/bundled"
},
"keywords": [
"makeup",
"ebay",
"accessibility",
"a11y"
],
"devDependencies": {
"@babel/cli": "^7",
"@babel/core": "^7",
"@babel/preset-env": "^7",
"@ebay/browserslist-config": "^1",
"babel-plugin-transform-object-assign": "^6",
"browser-sync": "^2",
"core-js-pure": "^3",
"coveralls": "^3",
"eslint": "^6",
"eslint-config-ebay": "^1",
"istanbul-instrumenter-loader": "^3",
"jasmine-core": "^3",
"karma": "^4",
"karma-chrome-launcher": "^3",
"karma-coverage": "^2",
"karma-coverage-istanbul-reporter": "^2",
"karma-jasmine": "^3",
"karma-webpack": "^4",
"mkdirp": "^1",
"nodelist-foreach-polyfill": "^1",
"onchange": "^6",
"parallelshell": "3.0.1",
"rimraf": "^3",
"webpack": "^4",
"webpack-cli": "^3"
},
"dependencies": {
"makeup-keyboard-trap": "~0.2.2",
"makeup-screenreader-trap": "~0.1.3"
},
"files": [
"browser.json",
"index.js",
"yarn.lock"
]
}