-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
57 lines (57 loc) · 1.35 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
{
"name": "weigh",
"version": "5.1.0",
"description": "A command line tool to check the bundle size of any browser compatible npm module",
"main": "./bin/cli.js",
"scripts": {
"mocha": "mocha test",
"lint": "standard --verbose | snazzy",
"test": "npm run mocha && npm run lint"
},
"bin": {
"weigh": "./bin/cli.js"
},
"repository": {
"type": "git",
"url": "https://github.com/bjoerge/weigh"
},
"author": "Bjørge Næss",
"license": "MIT",
"dependencies": {
"array-groupby": "^0.1.0",
"babel-core": "^6.24.1",
"babel-preset-babili": "0.0.12",
"browser-resolve": "^1.11.1",
"browserify": "^14.3.0",
"butternut": "^0.3.6",
"dev-null": "^0.1.1",
"envify": "^4.0.0",
"google-closure-compiler": "^20170409.0.0",
"humanize-list": "^1.0.1",
"merge2": "^1.0.2",
"minimist": "^1.2.0",
"multistream": "^2.1.0",
"ora": "^1.2.0",
"pretty-bytes": "^4.0.2",
"resolve-from": "^3.0.0",
"rimraf": "^2.6.1",
"tempfile": "^2.0.0",
"through2": "^2.0.1",
"uglify-es": "^3.0.4",
"uniq": "^1.0.1",
"update-notifier": "^2.1.0",
"xtend": "^4.0.1"
},
"devDependencies": {
"chai": "^3.5.0",
"expect": "^1.14.0",
"mocha": "^3.3.0",
"snazzy": "^7.0.0",
"standard": "^10.0.2"
},
"standard": {
"ignore": [
"/test/fixtures"
]
}
}