-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 1.5 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
{
"name": "bundle-compare-analyzer",
"version": "1.0.9",
"description": "Analyze the size of multiple git versions of the bundle.",
"main": "./lib/azer.js",
"bin": {
"azer": "./lib/azer.js"
},
"scripts": {
"clean": "rm -rf ./lib",
"start": "npm run clean && gulp",
"build": "npm run clean && babel ./src --out-dir ./lib",
"deploy": "npm run build && cqgit"
},
"keywords": [
"analyze",
"webpack",
"git",
"bundle",
"optimization"
],
"author": "rainie",
"license": "ISC",
"dependencies": {
"blessed": "^0.1.81",
"blessed-contrib": "^4.7.5",
"chalk": "^1.1.3",
"commander": "^2.9.0",
"filesize": "^3.5.9",
"fs-extra": "^3.0.1",
"gzip-size": "^3.0.0",
"inquirer": "^3.0.6",
"lodash": "^4.17.4",
"moment": "^2.18.1"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.0.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.4.0",
"eslint": "^3.8.1",
"eslint-config-cqaso-kit": "^0.0.1",
"eslint-loader": "^1.6.1",
"eslint-plugin-flowtype": "^2.32.1",
"eslint-plugin-import": "^2.0.1",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.4.1",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-plumber": "^1.1.0",
"gulp-sourcemaps": "^2.6.0",
"gulp-util": "^3.0.8",
"gulp-watch": "^4.3.11"
}
}