UNPKG

2.27 kBJSONView Raw
1{
2 "name": "hero-patterns",
3 "version": "1.0.2",
4 "description": "Patterns from heropatterns.com exported as ES6 functions",
5 "main": "index.js",
6 "scripts": {
7 "start": "yarn run browser_sync & NODE_ENV=development nodemon --exec 'yarn run test && yarn run build && browser-sync reload'",
8 "browser_sync": "browser-sync start --server dist --no-ui --no-notify",
9 "build": "rollup -c -m && postcss site/main.css -o dist/bundle.css -c",
10 "build:min": "cross-env NODE_ENV=production yarn run build && purifycss dist/bundle.css dist/index.html dist/bundle.js --out dist/bundle.css --min --info",
11 "test": "eslint --ignore-path .gitignore . && stylelint site/*.css"
12 },
13 "repository": {
14 "type": "git",
15 "url": "https://github.com/lowmess/hero-patterns.git"
16 },
17 "author": "Alec Lomas",
18 "license": "MIT",
19 "devDependencies": {
20 "autoprefixer": "^6.7.7",
21 "babel": "^6.23.0",
22 "babel-preset-env": "^1.2.2",
23 "babel-preset-es2015-rollup": "^3.0.0",
24 "browser-sync": "^2.18.8",
25 "cross-env": "^3.2.4",
26 "css-mqpacker": "^5.0.1",
27 "cssnano": "^3.10.0",
28 "cz-conventional-changelog": "^1.2.0",
29 "eslint": "^3.18.0",
30 "eslint-config-standard": "^7.1.0",
31 "eslint-plugin-import": "^2.2.0",
32 "eslint-plugin-node": "^4.2.1",
33 "eslint-plugin-promise": "^3.5.0",
34 "eslint-plugin-standard": "^2.1.1",
35 "fs-extra": "^2.1.2",
36 "nodemon": "^1.11.0",
37 "postcss": "^5.2.16",
38 "postcss-cli": "^3.0.0",
39 "postcss-custom-media": "^5.0.1",
40 "postcss-custom-properties": "^5.0.2",
41 "postcss-import": "^9.1.0",
42 "postcss-nested": "^1.0.0",
43 "purifycss": "^1.1.9",
44 "random-a11y-combo": "^1.0.0",
45 "rollup": "^0.41.6",
46 "rollup-plugin-babel": "^2.7.1",
47 "rollup-plugin-babili": "^2.0.0",
48 "rollup-plugin-commonjs": "^8.0.2",
49 "rollup-plugin-json": "^2.1.0",
50 "rollup-plugin-node-resolve": "^2.0.0",
51 "stylelint": "^7.9.0",
52 "stylelint-config-lowmess": "^0.1.0",
53 "tachyons": "^4.6.2"
54 },
55 "browserlist": [
56 "last 2 versions",
57 "> 5%"
58 ],
59 "stylelint": {
60 "extends": "stylelint-config-lowmess"
61 },
62 "eslintConfig": {
63 "extends": "standard"
64 },
65 "config": {
66 "commitizen": {
67 "path": "./node_modules/cz-conventional-changelog"
68 }
69 }
70}