-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.29 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 3.29 KB
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
105
106
107
108
109
110
{
"title": "HTML Starter by Aparecium Labs",
"name": "html-starter",
"version": "1.0.0-alpha.1",
"private": true,
"description": "A starter kit for HTML5 static website development with a congenial build process",
"homepage": "https://github.com/brionmario/html-starter#README.md",
"bugs": {
"url": "https://github.com/brionmario/html-starter/issues",
"email": "opensource@apareciumalabs.com"
},
"license": "MIT",
"author": "Brion Mario",
"contributors": [
{
"name": "Brion Mario",
"email": "brion@apareciumlabs.com",
"url": "https://github.com/brionmario"
}
],
"engines": {
"node": ">=8.9.1 <9.0.0",
"yarn": ">=1.3.2 <2.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/brionmario/html-starter"
},
"keywords": [
"gulp",
"css",
"sass",
"html",
"responsive",
"apareciumlabs",
"starter",
"seed"
],
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"testPathIgnorePatterns": [
"/vendor/",
"/src/bower_components/"
]
},
"scripts": {
"build:dev": "npm run clean:dev && gulp build --env=development",
"build:prod": "npm run clean:dist && gulp build --env=production",
"build": "npm run build:prod",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"clean:dev": "gulp clean --env=development",
"clean:dist": "gulp clean --env=production",
"clean": "gulp clean --env=all",
"gulp-dev-server": "gulp browserSync --base=dev",
"lint:scripts": "gulp scripts:lint; exit 0",
"lint:styles": "gulp styles:lint",
"lint": "npm run lint:scripts && npm run lint:styles",
"postinstall": "bower cache clean && bower install",
"semver": "npm version $(semver $npm_package_version -i $release --preid $preid)",
"server:dev": "npm run build:dev && gulp serve --env=development",
"server:prod": "npm run build:prod && http-server ./dist",
"server": "npm run server:dev",
"start": "npm run server",
"test": "jest && codecov",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md",
"watch:dev": "gulp watch",
"watch": "npm run watch:dev"
},
"dependencies": {
"@babel/core": "^7.2.0",
"@babel/preset-env": "^7.0.0",
"@babel/register": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-loader": "^8.0.4",
"bower": "^1.8.8",
"browser-sync": "2.24.5",
"browserify": "^16.2.2",
"del": "^3.0.0",
"gulp": "^4.0.0",
"gulp-autoprefixer": "^6.0.0",
"gulp-babel": "^8.0.0",
"gulp-clean-css": "3.9.4",
"gulp-concat": "^2.6.1",
"gulp-css-url-adjuster": "^0.2.3",
"gulp-eslint": "^5.0.0",
"gulp-header": "2.0.5",
"gulp-htmlmin": "^4.0.0",
"gulp-imagemin": "^4.1.0",
"gulp-inject": "^4.3.2",
"gulp-rename": "1.3.0",
"gulp-sass": "4.0.1",
"gulp-sass-lint": "^1.4.0",
"gulp-sourcemaps": "^2.6.4",
"gulp-uglify": "^3.0.1",
"gulp-util": "^3.0.8",
"http-server": "^0.11.1",
"main-bower-files": "^2.13.1",
"semver": "^5.5.1",
"wiredep": "^4.0.0"
},
"devDependencies": {
"all-contributors-cli": "^5.4.0",
"codecov": "^3.1.0",
"eslint": "^5.3.0",
"eslint-config-airbnb": "^17.0.0",
"jest": "^23.5.0"
}
}