-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
104 lines (104 loc) · 4.23 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "perfundo",
"version": "4.0.4",
"description": "a pure CSS lightbox",
"keywords": [
"lightbox",
"css",
"sass"
],
"author": "Markus Oberlehner",
"homepage": "https://perfundo.oberlehner.net",
"license": "MIT",
"scripts": {
"styles:sass": "node scripts/sass.js",
"styles:postcss": "postcss --use autoprefixer --replace dist/**/*.css && postcss --use autoprefixer --replace demo/dist/**/*.css",
"styles:minify": "cleancss --output dist/perfundo.min.css dist/perfundo.css && cleancss --output dist/perfundo.with-icons.min.css dist/perfundo.with-icons.css && cleancss --output demo/dist/index.min.css demo/dist/index.css",
"styles": "npm run styles:sass && npm run styles:postcss && npm run styles:minify",
"scripts:bundle": "rollup --config --output.format umd --name perfundo --output.file dist/perfundo.js js/index.js",
"scripts:minify": "uglifyjs --compress --mangle --comments --output dist/perfundo.min.js dist/perfundo.js",
"scripts": "npm run scripts:bundle && npm run scripts:minify",
"build": "npm run styles && npm run scripts",
"watch:styles": "onchange scss/**/*.scss demo/scss/**/*.scss -- npm run styles",
"watch:scripts": "onchange js/**/*.js -- npm run scripts",
"watch": "parallelshell 'npm run watch:styles' 'npm run watch:scripts'",
"lint:styles": "stylelint demo/scss/**/*.scss scss/**/*.scss --syntax scss",
"lint:scripts": "eslint js/**/*.js rollup.config.js",
"lint": "npm run lint:styles && npm run lint:scripts",
"demo": "mkdir -p demo/vendor && cp -R node_modules/animate.css demo/vendor/ && cp -R node_modules/highlight.js demo/vendor/ && npm run build && cp -a dist/. demo/vendor/perfundo/",
"serve-demo": "http-server demo/",
"website": "npm run demo && cp -R demo/ website && node scripts/website.js",
"serve-website": "http-server website/",
"coverage": "jest --coverage --maxWorkers=4",
"coveralls": "npm run coverage && cat coverage/lcov.info | coveralls",
"test:unit": "jest",
"test:acceptance": "npm run demo && ./test/acceptance/testcafe.sh",
"test:acceptance-local": "npm run demo && testcafe chrome test/acceptance/ --app 'http-server demo/ -p 1337 -s'",
"test": "npm run test:unit && npm run test:acceptance",
"prepublishOnly": "npm run build"
},
"dependencies": {
"vanilla-touchwipe": "^1.0.0"
},
"devDependencies": {
"@avalanche/eslint-config": "^2.0.0",
"@avalanche/generic-box-sizing-reset": "^4.0.0-alpha.4",
"@avalanche/object-container": "^4.0.0-alpha.7",
"@avalanche/object-grid": "^4.0.0-alpha.14",
"@avalanche/object-media": "^4.0.0-alpha.5",
"@avalanche/object-vertical-spacing": "^4.0.0-alpha.4",
"@avalanche/setting-breakpoints": "^4.0.0-alpha.4",
"@avalanche/setting-colors": "^4.0.0-alpha.4",
"@avalanche/setting-font-sizes": "^4.0.0-alpha.4",
"@avalanche/setting-spacings": "^4.0.0-alpha.5",
"@avalanche/stylelint-config": "^0.1.2",
"@avalanche/utility-text-align": "^4.0.0-alpha.4",
"animate.css": "^3.6.1",
"autoprefixer": "^8.4.1",
"babel-preset-env": "^1.6.1",
"clean-css-cli": "^4.1.11",
"coveralls": "^3.0.1",
"declassify": "^2.1.0",
"eslint": "^4.19.1",
"eslint-plugin-compat": "^2.2.0",
"eslint-plugin-import": "^2.11.0",
"highlight.js": "^9.12.0",
"html-minifier": "^3.5.15",
"http-server": "^0.11.1",
"jest": "^22.4.3",
"node-sass": "^4.9.0",
"node-sass-magic-importer": "^5.1.2",
"onchange": "^3.3.0",
"parallelshell": "^3.0.2",
"postcss-cli": "^5.0.0",
"rollup": "^0.58.2",
"rollup-plugin-babel": "^3.0.4",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-node-resolve": "^3.3.0",
"stylelint": "^9.2.0",
"testcafe": "^0.19.2",
"testcafe-browser-provider-browserstack": "^1.4.0",
"uglify-js": "^3.3.23",
"uncss": "^0.16.2"
},
"main": "dist/perfundo.js",
"module": "js/index.js",
"css": "dist/perfundo.css",
"sass": "scss/index.scss",
"repository": {
"type": "git",
"url": "https://github.com/maoberlehner/perfundo"
},
"bugs": {
"url": "https://github.com/maoberlehner/perfundo/issues"
},
"browserslist": [
"last 2 versions"
],
"jest": {
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/"
]
}
}