forked from elijahmanor/react-file-size
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.82 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "react-file-size",
"version": "1.0.0",
"description": "Show file size changes over versions of React",
"main": "index.js",
"bin": {
"react-file-size": "./index.js"
},
"scripts": {
"start": "node index.js",
"test": "mocha spec/ --require babel-register",
"test:watch": "npm t -- --watch",
"cover": "nyc npm test",
"cover:open": "open coverage/lcov-report/index.html",
"lint": "jscs src/index.js && eslint src/index.js",
"lint:fix": "jscs src/index.js --fix && eslint src/index.js --fix",
"build": "npm run build:html && npm run build:css && npm run build:js && npm run uglify",
"build:html": "jade --obj data.json src/index.jade --out public/",
"build:css": "node-sass src/index.scss public/index.css",
"build:js": "mustache data.json src/index.mustache.js > public/index.js",
"uglify": "npm run uglify:js && npm run uglify:css",
"uglify:js": "uglifyjs public/index.js -o public/index.min.js",
"uglify:css": "node-sass src/index.scss public/index.min.css --output-style=compressed",
"gh-pages": "git subtree push --prefix public origin gh-pages",
"gh-pages:force": "git push origin `git subtree split --prefix public master`:gh-pages --force",
"gh-pages:refresh": "git push origin :gh-pages && git subtree push --prefix public origin gh-pages"
},
"nyc": {
"include": [
"src/**/*.js"
],
"exclude": [
"node_modules",
"spec/**/*.js"
],
"reporter": [
"lcov",
"text-summary",
"html"
]
},
"author": "Elijah Manor",
"license": "MIT",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.3.13",
"babel-preset-stage-2": "^6.3.13",
"babel-register": "^6.5.2",
"cheerio": "^0.22.0",
"colors": "^1.1.2",
"commander": "^2.9.0",
"gzip-size": "^3.0.0",
"gzip-size-cli": "^1.0.0",
"inquirer": "^0.12.0",
"lodash": "^4.0.1",
"log-update": "^1.0.2",
"normalize.scss": "^0.1.0",
"ora": "^0.3.0",
"pretty-bytes": "^3.0.1",
"request": "^2.74.0",
"request-promise": "^4.1.1",
"shelljs": "^0.5.3",
"when": "^3.7.7"
},
"devDependencies": {
"babel-eslint": "^5.0.0-beta6",
"babel-jest": "^15.0.0",
"babel-polyfill": "^6.13.0",
"babel-register": "^6.16.3",
"chai": "^3.5.0",
"dirty-chai": "^1.2.2",
"eslint": "^1.10.3",
"eslint-config-leankit": "^1.1.0",
"gzipped": "0.0.5",
"jade": "^1.11.0",
"jest": "^15.1.1",
"jscs": "^2.11.0",
"mocha": "^3.1.0",
"mustache": "^2.2.1",
"node-sass": "^3.6.0",
"nyc": "^8.3.2",
"onchange": "^2.0.0",
"parallelshell": "^2.0.0",
"proxyquire": "^1.7.10",
"push-dir": "^0.2.2",
"sinon": "^1.17.6",
"sinon-chai": "^2.8.0",
"uglify-js": "^2.6.2"
}
}