-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.15 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.15 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
{
"name": "qualitymeter",
"version": "0.0.0-semantically-released",
"description": "A customizable web performance metrics collector.",
"main": "./dist/index.js",
"scripts": {
"commit": "git-cz",
"test": "mocha test/commands.js --compilers js:babel-register",
"build": "npm-run-all --parallel build:src build:bin && cp qualitymeter_template.jade dist/",
"build:watch": "watch 'npm-run-all --parallel build:src build:bin' .",
"prebuild": "rimraf dist",
"build:src": "babel --out-dir dist src",
"build:bin": "babel --out-dir dist/bin bin",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"bin": {
"qualitymeter": "dist/bin/qualitymeter.js"
},
"author": "QualityWorks Consulting Group Jamaica <wharding@qualityworkscg.com> (http://qualityworkscg.com/)",
"license": "MIT",
"files": [
"dist",
"test",
"README.md"
],
"dependencies": {
"app-root-path": "1.3.0",
"async": "2.0.1",
"file-cookie-store": "0.2.1",
"fs": "0.0.2",
"lodash": "^4.17.15",
"mkdirp": "0.5.1",
"moment": "^2.24.0",
"path": "0.12.7",
"phantomas": "1.18.0",
"progress": "1.1.8",
"pug": "^2.0.4",
"tough-cookie": "^3.0.1"
},
"devDependencies": {
"babel-cli": "6.11.4",
"babel-core": "6.11.4",
"babel-preset-es2015": "6.9.0",
"babel-preset-stage-2": "6.11.0",
"babel-register": "6.11.5",
"chai": "3.5.0",
"commitizen": "^4.0.3",
"cz-conventional-changelog": "1.1.6",
"del": "2.2.1",
"eslint": "^4.18.1",
"gulp": "^4.0.2",
"gulp-babel": "6.1.2",
"gulp-concat": "2.6.0",
"gulp-sourcemaps": "1.6.0",
"gulp-watch": "^5.0.1",
"mocha": "^6.2.0",
"npm-run-all": "2.3.0",
"rewire": "2.5.2",
"rimraf": "2.5.4",
"run-sequence": "1.2.2",
"semantic-release": "^15.13.19",
"should": "10.0.0",
"watch": "0.19.1"
},
"repository": {
"type": "git",
"url": "https://github.com/QualityWorksCG/qualitymeter.git"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"babel": {
"presets": [
"es2015",
"stage-2"
]
}
}