-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.03 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
{
"name": "gulp-tasks",
"version": "0.1.0",
"description": "A collection of preconfigured gulp tasks",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/kopfwelt/gulp-tasks.git"
},
"author": {
"name": "Steve Sinnwell",
"email": "[email protected]"
},
"homepage": "http://code.kopfwelt.com/gulp-tasks/",
"bugs": {
"url": "https://github.com/kopfwelt/gulp-tasks/issues"
},
"keywords": [
"gulp",
"tasks"
],
"license": "MIT",
"engines": {
"node": ">=0.12.0"
},
"scripts": {
"start": "gulp",
"test": "xo tasks/*;mocha --recursive test/unit/specs/ --reporter spec --require babel-core/register;",
"coverage": "istanbul cover _mocha --recursive test/unit/specs/tests -- --compilers js:babel-core/register",
"coverage-es6": "babel-node ./node_modules/.bin/isparta cover _mocha",
"metrics:compile_source": "./node_modules/.bin/babel --optional runtime tasks/ --out-dir dist/metrics/src",
"metrics": "npm run metrics:compile_source && ./node_modules/.bin/plato -r -d reports/metrics dist/metrics/src"
},
"babel": {
"presets": [
"es2015"
]
},
"xo": {
"esnext": true,
"envs": [
"browser",
"commonjs"
],
"rules": {
"no-unused-expressions": 0
}
},
"devDependencies": {},
"dependencies": {
"autoprefixer": "^6.1.0",
"babel-core": "^6.0.20",
"babel-preset-es2015": "^6.0.15",
"browser-sync": "^2.9.11",
"gulp": "^3.9.0",
"gulp-hb": "^2.6.5",
"gulp-notify": "^2.2.0",
"gulp-postcss": "^6.0.1",
"gulp-rename": "^1.2.2",
"gulp-watch": "^4.3.5",
"gulp-webdriver": "^1.0.1",
"handlebars-layouts": "^3.1.2",
"i18next": "^1.10.5",
"plato": "^1.5.0",
"postcss-nested": "^1.0.0",
"webdriverio": "^3.2.6",
"webpagetest": "^0.3.3",
"chai": "^3.4.0",
"graceful-fs": "^4.1.2",
"isparta": "^3.5.3",
"istanbul": "^0.4.0",
"mkdirp": "^0.5.1",
"mocha": "^2.3.3",
"mock-gulp-dest": "^0.1.1",
"require-dir": "^0.3.0",
"rimraf": "^2.4.3"
}
}