-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 966 Bytes
/
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
{
"name": "gulp-typetalk",
"version": "0.1.2",
"description": "Gulp plugin to send notifications to Typetalk",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/is2ei/gulp-typetalk"
},
"scripts": {
"lint": "eslint ./index.js ./index.test.js",
"test": "mocha ./index.test.js",
"coverage": "nyc mocha ./index.test.js",
"report-coverage": "nyc mocha ./index.test.js && nyc report --reporter=text-lcov | coveralls"
},
"files": [
"index.js"
],
"keywords": [
"gulpplugin",
"typetalk"
],
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.0.3",
"eslint": "^5.15.1",
"eslint-config-is2ei": "^0.1.5",
"eslint-plugin-mocha": "^5.3.0",
"mocha": "^6.0.2",
"nock": "^10.0.6",
"nyc": "^13.3.0"
},
"dependencies": {
"gulp-util": "^3.0.8"
}
}