-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.03 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 2.03 KB
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": "Qualy",
"version": "0.0.1",
"description": "A simple boilerplate with ES6, Gulp, Jade, Stylus and Browsersync.",
"repository": {
"type": "git",
"url": "git+https://github.com/willianjusten/qualy.git"
},
"scripts": {
"lint": "npm run lint:client && npm run lint:server",
"lint:client": "./node_modules/.bin/jscs client && ./node_modules/.bin/jshint client",
"lint:server": "./node_modules/.bin/jscs server && ./node_modules/.bin/jshint server",
"fix": "./node_modules/.bin/jscs src --fix && ./node_modules/.bin/jscs server --fix",
"precommit": "npm run lint",
"prepush": "npm run lint"
},
"keywords": [
"frontend"
],
"author": "Willian Justen de Vasconcellos <willianjustenqui@gmail.com> (http://willianjusten.com.br/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/willianjusten/qualy/issues"
},
"homepage": "https://github.com/willianjusten/qualy#readme",
"devDependencies": {
"autoprefixer-stylus": "^0.9.2",
"babel": "^6.5.2",
"babel-core": "^6.7.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-es2015-rollup": "^1.1.1",
"babel-register": "^6.7.2",
"browser-sync": "^2.11.2",
"chai": "^3.5.0",
"gulp": "^3.9.1",
"gulp-concat": "^2.6.0",
"gulp-cssnano": "^2.1.1",
"gulp-env": "^0.4.0",
"gulp-gh-pages": "^0.5.4",
"gulp-group-css-media-queries": "^1.1.0",
"gulp-imagemin": "^2.4.0",
"gulp-istanbul": "^0.10.3",
"gulp-mocha": "^2.2.0",
"gulp-plumber": "^1.1.0",
"gulp-pug": "1.2.0",
"gulp-rollup": "^1.8.0",
"gulp-sourcemaps": "^1.6.0",
"gulp-stylus": "^2.3.1",
"gulp-uglify": "^1.5.3",
"jeet": "^6.1.2",
"jscs": "^2.11.0",
"jshint": "^2.9.1",
"kouto-swiss": "^0.12.0",
"mocha": "^2.4.5",
"rollup-plugin-babel": "^2.4.0",
"rupture": "^0.6.1",
"supertest": "^1.2.0",
"rollup-plugin-commonjs": "^2.2.1",
"rollup-plugin-node-resolve": "^1.5.0"
},
"dependencies": {
"body-parser": "^1.15.0",
"express": "^4.13.4",
"pug": "2.0.0-alpha3"
}
}