-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 2.02 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
{
"name": "esnext-coverage-format-html",
"version": "0.0.10",
"description": "esnext-coverage output formatter to HTML",
"main": "dist/index.js",
"scripts": {
"dev": "GULP_ENV=dev gulp build",
"dev-live": "npm test && GULP_ENV=dev-live gulp serve",
"dist": "NODE_ENV=production GULP_ENV=dist gulp build",
"dist-live": "npm test && NODE_ENV=production GULP_ENV=dist-live gulp serve",
"lint": "eslint --ignore-path .gitignore .",
"test": "mocha -r esnext-coverage -r jsdom-global/register test/*.spec.js",
"prepublish": "npm run lint && npm run dist",
"start": "npm run dev-live"
},
"author": "Oleg Sklyanchuk <[email protected]> (http://olegskl.com)",
"license": "MIT",
"dependencies": {
"esnext-coverage": "^0.0.9",
"esnext-coverage-analytics": "^0.0.6",
"fuzzaldrin": "^2.1.0",
"redux": "^3.6.0",
"url-parse": "^1.1.8",
"virtual-dom": "^2.1.1"
},
"devDependencies": {
"autoprefixer": "^6.7.7",
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babelify": "^7.3.0",
"browser-sync": "^2.18.8",
"browserify": "^14.3.0",
"chai": "^3.5.0",
"del": "^2.2.2",
"eslint": "^3.19.0",
"eslint-config-meetic": "^4.0.0",
"eslint-plugin-mocha": "^4.9.0",
"etag": "^1.8.0",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-changed": "^2.0.0",
"gulp-cssmin": "^0.1.7",
"gulp-htmlmin": "^3.0.0",
"gulp-if": "^2.0.2",
"gulp-inject": "^4.2.0",
"gulp-notify": "^3.0.0",
"gulp-plumber": "^1.1.0",
"gulp-postcss": "^6.4.0",
"gulp-sourcemaps": "^2.6.0",
"gulp-uglify": "^2.1.2",
"gulp-util": "^3.0.8",
"gulp-watch": "^4.3.11",
"jsdom": "^9.12.0",
"jsdom-global": "^2.1.1",
"merge-stream": "^1.0.1",
"mocha": "^3.2.0",
"postcss-custom-properties": "^5.0.2",
"postcss-extend": "^1.0.5",
"postcss-import": "^9.1.0",
"run-sequence": "^1.2.2",
"through2": "^2.0.3",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0"
}
}