-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
78 lines (78 loc) · 3.05 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
{
"name": "pega-bots",
"version": "2.1.1",
"description": "Social networks profiles bot-like analyzer",
"main": "index.html",
"scripts": {
"prebuild": "npm-run-all --parallel lint clean",
"build": "cross-env NODE_ENV=production hugo --ignoreCache --cleanDestinationDir",
"clean": "npm-run-all --parallel clean:*",
"clean:dist": "rimraf ./public/**/*.*",
"clean:testResults": "rimraf ./testResults/**/*.xml",
"cachebust": "npm run cachebust:media",
"cachebust:content": "hashmark -l 8 ./**/*.{gif,jpg,png,svg,mp4} {dir}/{name}-{hash}{ext} --cwd content | replaceinfiles -s \"{content,data}/**/*.{md,yaml}\" -d \"{dir}/{base}\"",
"cachebust:media": "hashmark -l 8 assets/**/*.{gif,jpg,png,svg,mp4} {dir}/{name}-{hash}{ext} --cwd static | replaceinfiles -s \"{content,data,layouts,static}/**/*.{md,html,css,yaml}\" -d \"{dir}/{base}\"",
"prelint": "rimraf ./testResults/**/*.xml",
"lint": "npm-run-all --parallel lint:*",
"lint:es": "eslint --ext .es,.js \"./source/scripts/**\" --format junit --output-file ./testResults/esLint.xml",
"lint:sass": "sass-lint \"./assets/stylesheets/**/*.scss\" --verbose --no-exit --format junit --output ./testResults/sassLint.xml",
"dev": "npm run serve",
"serve": "npm-run-all start:*",
"start:hugo": "cross-env NODE_ENV=development hugo server --verbose --noHTTPCache=true --ignoreCache --templateMetrics --templateMetricsHints --disableFastRender --log --debug",
"start:proxy": "lcp --proxyUrl https://dev.pegabot.com.br",
"pretest": "npm run lint",
"test": "jest",
"preversion": "changelog-verify CHANGELOG.md && git checkout master && git merge dev",
"version": "version-changelog CHANGELOG.md && git add CHANGELOG.md",
"postversion": "git checkout dev && git merge master"
},
"repository": {
"type": "git",
"url": "git+ssh://git@bitbucket.org/eokoe__frontend/pega-bots.git"
},
"keywords": [
"html",
"es6",
"sass",
"hugo"
],
"author": "sobral",
"license": "ISC",
"homepage": "https://bitbucket.org/eokoe__frontend/pega-bots#readme",
"devDependencies": {
"@songkick/replaceinfiles": "^1.1.6",
"autoprefixer": "^7.2.5",
"babel-core": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babelify": "^8.0.0",
"browserify": "^15.2.0",
"changelog-verify": "^1.1.2",
"cross-env": "^5.1.3",
"cssnano": "^3.10.0",
"eslint": "^4.16.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"hashmark": "^5.0.0",
"local-cors-proxy": "^1.1.0",
"modularscale-sass": "^3.0.10",
"npm-run-all": "^4.1.5",
"onchange": "^3.3.0",
"postcss-cli": "^4.1.1",
"rimraf": "^2.6.2",
"sass": "^1.26.9",
"sass-lint": "^1.12.1",
"uglify-js": "^3.3.8",
"version-changelog": "^2.1.0"
},
"dependencies": {
"chart.js": "^2.9.3",
"cookieconsent": "^3.1.1",
"css-modal": "^1.5.0",
"vue": "^2.5.13",
"vue-chartjs": "^3.5.1",
"vue-resource": "^1.3.5"
},
"browser": {
"vue-chartjs": "./public/js/shims/vue-chartjs.js"
}
}