forked from makeup-js/makeup-expander
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 2.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
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": "makeup-expander",
"description": "Creates the basic interactivity for an element that expands and collapses another element.",
"version": "0.7.0",
"main": "index.js",
"repository": "https://github.com/makeup-js/makeup-expander.git",
"author": "Ian McBurnie <ianmcburnie@hotmail.com>",
"license": "MIT",
"scripts": {
"start": "npm run build && parallelshell \"npm run server\" \"npm run watch\"",
"test": "npm run transpile && npm run lasso:test && npm run clean && karma start --autoWatch false --singleRun true",
"prepublishOnly": "npm run clean && npm run lint && npm run build && npm run test",
"build": "npm run transpile && npm run lasso",
"fix": "eslint -c src/.eslintrc src/index.js --fix",
"lint": "eslint -c src/.eslintrc src/index.js lint.txt",
"lasso": "lasso require-run:./docs/index.js --out docs/static --inject-into docs/index.html --name bundle && npm run clean:lasso",
"lasso:test": "lasso require-run:./test/index.js --name bundle-test --out test/static --config ./test/lasso-config.json && npm run clean:lasso",
"clean": "rimraf reports .DS_Store test/.DS_Store src/.DS_Store docs/.DS_Store && npm run clean:lasso",
"clean:lasso": "rimraf .cache build",
"server": "browser-sync start -s --ss docs --index docs/index.html --files docs/index.html",
"watch": "onchange src/*.js docs/*.js -- npm run build",
"transpile": "babel src/index.js --out-file index.js",
"version": "npm run prepublishOnly && git add -A docs/static test/static"
},
"keywords": [
"makeup",
"ebay",
"accessibility",
"a11y"
],
"devDependencies": {
"babel-cli": "^6",
"babel-plugin-transform-object-assign": "^6",
"babel-preset-env": "^1",
"browser-sync": "^2",
"coveralls": "^3",
"eslint": "^4",
"eslint-config-ebay": "^1",
"jasmine-core": "^2",
"karma": "^2",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1",
"karma-html-reporter": "~0.2",
"karma-jasmine": "^1",
"lasso-cli": "^2",
"onchange": "^3",
"parallelshell": "^3",
"puppeteer": "^1.2.0",
"rimraf": "^2"
},
"dependencies": {
"custom-event-polyfill": "~0.3",
"makeup-exit-emitter": "~0.0.4",
"makeup-focusables": "~0.0.3",
"makeup-next-id": "~0.0.2"
},
"files": [
"browser.json",
"index.js",
"yarn.lock"
]
}