-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.67 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
{
"name": "gulp-minion",
"version": "1.0.0",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"author": "Markus Spanier <markus.spanier@tngtech.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/marspa/gulp-minion.git"
},
"scripts": {
"build": "yarn test && yarn run compile",
"compile": "rimraf build && tsc",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"clean": "yarn run clean:coverage && rimraf node_modules build",
"clean:coverage": "rimraf coverage .nyc_output",
"lint": "tslint lib/**/*.ts test/**/*.ts",
"mocha": "nyc mocha --opts mocha.opts",
"pre:test": "yarn run clean:coverage",
"test": "yarn run lint && yarn run mocha",
"test:watch": "yarn test -- --watch"
},
"nyc": {
"include": [
"lib/**/*.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"text-summary",
"html",
"lcovonly"
]
},
"dependencies": {
"gulp": "^3.9.1",
"inversify": "^3.3.0",
"reflect-metadata": "^0.1.10",
"run-sequence": "^1.2.2",
"uuid": "^3.0.1"
},
"devDependencies": {
"@types/chai": "^3.4.34",
"@types/gulp": "^4.0.2",
"@types/mocha": "^2.2.35",
"@types/node": "^7.0.12",
"@types/run-sequence": "^0.0.29",
"@types/sinon": "^2.1.2",
"chai": "^3.5.0",
"coveralls": "^2.11.16",
"mocha": "^3.2.0",
"mocha-lcov-reporter": "^1.2.0",
"mocha-sinon": "^2.0.0",
"nyc": "^10.0.0",
"rimraf": "^2.5.4",
"sinon": "^2.1.0",
"ts-node": "^3.0.2",
"tslint": "^5.0.0",
"typescript": "^2.2.2"
}
}