-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.29 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
{
"name": "msg-starter",
"version": "1.0.0",
"description": "Starter site for the mini site generator",
"main": "index.js",
"scripts": {
"start": "run-p start:*",
"start:server": "http-server ./docs/",
"start:watch": "run-p watch:*",
"watch:markup": "watch \"npm run build:markup\" src/markup --interval=0.2",
"watch:css": "watch \"npm run build:css\" src/css --interval=0.2",
"watch:js": "watch \"npm run build:js\" src/js --interval=0.2",
"build:markup": "msg -io ./src/markup/ ./docs/",
"build:css":
"postcss --use postcss-import postcss-custom-media autoprefixer cssnano -o docs/main.css src/css/main.css --no-map",
"build:js": "cross-env NODE_ENV=production rollup -c",
"test:coverage": "node ./test/coverage.js",
"test:a11y": "node ./test/pa11y.js",
"xtest:a11y": "pa11y \"./docs/index.html\"",
"precommit": "pretty-quick --staged",
"xprepush": "npm run test:a11y"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ijmccallum/msg-starter.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ijmccallum/msg-starter/issues"
},
"prettier": {
"printWidth": 100,
"tabWidth": 4
},
"homepage": "https://github.com/ijmccallum/msg-starter#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.6.1",
"chalk": "^2.3.1",
"cheerio": "^1.0.0-rc.2",
"cli-table": "^0.3.1",
"cross-env": "^5.1.3",
"cssnano": "^3.10.0",
"eslint-config-prettier": "^2.9.0",
"html-minifier": "^3.5.8",
"http-server": "^0.11.1",
"husky": "^0.14.3",
"mini-site-generator": "^1.0.10",
"npm-run-all": "^4.1.2",
"pa11y": "^5.0.1",
"postcss": "^6.0.18",
"postcss-cli": "^5.0.0",
"postcss-cssnext": "^3.1.0",
"postcss-custom-media": "^6.0.0",
"postcss-import": "^11.1.0",
"prettier": "^1.11.0",
"pretty-quick": "^1.4.1",
"rollup": "^0.56.3",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-uglify": "^3.0.0",
"watch": "^1.0.2"
}
}