-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
60 lines (60 loc) · 2.27 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
{
"name": "launchy-modal-window",
"version": "0.9.2",
"description": "Launchy! – An Accessible Modal Window",
"main": "index.js",
"scripts": {
"start": "concurrently 'npm run webpack-watch' 'npm run sass' 'npm run server'",
"server": "browser-sync start reload --reloadDelay 2000 --server './brochure' --files './brochure/index.html' './src/launchy.js' './brochure/css/launchy.css'",
"sass": "node-sass --output-style compressed --watch ./brochure/css/sass/styles.scss ./brochure/css/launchy.css",
"autoprefixer": "postcss ./brochure/css/launchy.css --use autoprefixer -o ./brochure/css/launchy.css",
"webpack-watch": "webpack -d --watch",
"build": "webpack -p && npm run autoprefixer && npm run copy-to-npm",
"copy-to-brochure": "cp ./dist/launchy.js ./brochure/js/launchy.js",
"copy-to-npm": "cp ./dist/launchy.js ./dist/npm/index.js && cp ./.gitignore ./dist/npm && cp ./LICENSE.md ./dist/npm && cp ./package.json ./dist/npm && cp ./README.md ./dist/npm",
"reload": "browser-sync reload",
"release": "bump --version && bump --prompt --tag --grep ./src/launchy.js && cp ./package.json ./dist/npm && cd ./dist/npm && npm publish",
"precommit": "npm test && npm run build",
"test": "mocha-headless-chrome -f test/test.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/svinkle/launchy.git"
},
"keywords": [
"accessibility",
"a11y",
"modal",
"dialog",
"html",
"javascript"
],
"author": "Scott Vinkle <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/svinkle/launchy/issues"
},
"homepage": "https://github.com/svinkle/launchy#readme",
"devDependencies": {
"autoprefixer": "^7.1.2",
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-runtime": "^6.25.0",
"browser-sync": "^2.18.13",
"chai": "^4.1.2",
"chai-truthy": "^1.0.0",
"concurrently": "^3.5.0",
"focusable": "^2.0.0",
"husky": "^0.14.3",
"mocha": "^4.0.1",
"mocha-headless-chrome": "^1.6.0",
"node-sass": "^4.5.3",
"postcss-cli": "^4.1.0",
"version-bump-prompt": "^3.1.2",
"webpack": "^3.4.1",
"webpack-shell-plugin": "^0.5.0",
"wicg-inert": "^1.1.6"
}
}