-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.6 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
94
95
{
"name": "helpers",
"version": "2.0.0",
"description": "",
"main": "dist/helpers.js",
"directories": {
"test": "./test",
"lib": "./lib",
"doc": "./docs",
"bin": "./dist"
},
"nyc": {
"require": [
"babel-register"
]
},
"scripts": {
"pretest": "eslint src/**/*.js",
"nibble": "eslint-nibble src/",
"docs": "jsdoc --configure config/jsdoc.json src -r -d docs -R readme.md",
"report": "gulp analysis",
"coverage": "nyc -r html mocha test/index",
"test": "mocha test/index -R mochawesome",
"nyc": "cross-env NODE_ENV=test nyc mocha -r html",
"istanbul": "cross-env NODE_ENV=test istanbul cover node_modules/mocha/bin/mocha",
"preversion": "gulp --force"
},
"author": "",
"license": "ISC",
"devDependencies": {
"babel-cli": "latest",
"babel-plugin-istanbul": "latest",
"babel-polyfill": "latest",
"babel-register": "latest",
"chai": "latest",
"cross-env": "latest",
"es6-plato": "latest",
"eslint": "latest",
"eslint-config-standard": "latest",
"eslint-nibble": "latest",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsdoc": "latest",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "latest",
"eslint-plugin-standard": "latest",
"gaze": "latest",
"glob": "latest",
"globby": "latest",
"graceful-fs": "latest",
"gulp": "latest",
"gulp-babel": "latest",
"gulp-cached": "latest",
"gulp-changed": "latest",
"gulp-eslint": "latest",
"gulp-filter": "latest",
"gulp-if": "latest",
"gulp-prettier": "github:Announcement/gulp-prettier",
"gulp-rename": "latest",
"gulp-sourcemaps": "latest",
"gulp-uglify": "latest",
"gulp-util": "latest",
"gulp-watch": "latest",
"istanbul": "latest",
"karma": "latest",
"karma-babel-preprocessor": "latest",
"karma-mocha": "latest",
"lazypipe": "latest",
"minami": "latest",
"minimatch": "latest",
"minimist": "latest",
"mocha": "latest",
"mocha-simple-html-reporter": "latest",
"mochawesome": "latest",
"nyc": "latest",
"pump": "latest",
"rollup-plugin-babel": "latest",
"rollup-plugin-json": "latest",
"rollup-plugin-memory": "latest",
"rollup-plugin-sourcemaps": "latest",
"through2": "latest",
"uglify-es": "latest",
"vinyl-buffer": "latest",
"vinyl-fs": "latest",
"vinyl-source-stream": "latest",
"vinyl-sourcemaps-apply": "latest",
"yargs": "latest"
},
"repository": {
"type": "git",
"url": "git://github.com/Announcement/helpers.git"
},
"dependencies": {
"babel-preset-env": "^1.6.0"
}
}