-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.94 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
{
"name": "express-wizard",
"version": "1.2.0",
"description": "Autoload your express dependencies using the power of glob",
"main": "dist/all.js",
"jsnext:main": "src/wizard.js",
"repository": {
"type": "git",
"url": "https://github.com/pragmaticivan/wizard.git"
},
"bugs": {
"url": "https://github.com/pragmaticivan/wizard/issues"
},
"files": [
"dist",
"src"
],
"scripts": {
"build": "node ./node_modules/.bin/gulp build",
"lint": "node ./node_modules/.bin/gulp lint",
"release": "node NODE_ENV=production ./node_modules/.bin/gulp build",
"test": "node ./node_modules/.bin/gulp coverage",
"test:watch": "node ./node_modules/.bin/gulp test:watch",
"test:coverage:travis": "node ./node_modules/.bin/gulp test:coverage:travis",
"generate-changelog": "node ./node_modules/.bin/auto-changelog",
"preversion": "npm test",
"postversion": "git push && git push --tags && rm -rf dist",
"version": "npm run generate-changelog && git add CHANGELOG.md",
"prepublish": "npm run build"
},
"author": "Ivan Santos",
"license": "MIT",
"devDependencies": {
"auto-changelog": "^0.3.1",
"babel-core": "^6.22.1",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-plugin-transform-async-to-generator": "^6.22.0",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-preset-es2015": "^6.22.0",
"chai": "^3.5.0",
"del": "^2.2.2",
"eslint": "^3.13.1",
"eslint-config-google": "^0.7.1",
"eslint-loader": "^1.6.1",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-codecov": "^2.0.2",
"gulp-concat": "^2.6.1",
"gulp-eslint": "^3.0.1",
"gulp-istanbul": "^1.1.1",
"gulp-load-plugins": "^1.4.0",
"gulp-mocha": "^3.0.1",
"gulp-sourcemaps": "^2.4.0",
"isparta": "^4.0.0",
"mocha": "^3.2.0",
"run-sequence": "^1.2.2",
"sinon": "^1.17.7",
"sinon-chai": "^2.8.0"
},
"dependencies": {
"multi-glob": "^1.0.1"
}
}