-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.89 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.89 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
67
68
69
70
71
72
73
74
{
"name": "dmr-source",
"version": "0.3.4",
"discription": "source modules of node-dmr",
"scripts": {
"preversion": "tsc && npm run lint && npm run cover",
"lint": "tslint src/**/*.ts test/**/*.ts",
"doc": "gulp doc",
"test": "node_modules/mocha/bin/_mocha --require ts-node/register --require source-map-support/register -t 3000 --recursive",
"cover": "node_modules/nyc/bin/nyc.js npm run test test/*.ts && node_modules/nyc/bin/nyc.js report --reporter=text",
"coveralls": "npm run cover && nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/node-dmr/dmr-source"
},
"bugs": {
"url": "https://github.com/node-dmr/dmr-source/issues"
},
"homepage": "https://github.com/node-dmr/dmr",
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/ftp": "^0.3.29",
"@types/mocha": "^5.2.5",
"@types/node": "^10.9.4",
"@types/underscore": "^1.8.9",
"chai": "^4.1.2",
"coveralls": "^3.0.2",
"eslint": "^5.2.0",
"findup-sync": "^2.0.0",
"ftp-srv": "^4.4.0",
"gulp": "^3.9.1",
"gulp-typedoc": "^2.2.0",
"gulp-typescript": "^5.0.0-alpha.3",
"gulp-util": "^3.0.8",
"istanbul": "^0.4.5",
"jsdoc-to-markdown": "^4.0.1",
"mocha": "^5.2.0",
"nyc": "^13.0.1",
"source-map-support": "^0.5.9",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"typedoc": "^0.12.0",
"typedoc-plugin-markdown": "^1.1.15",
"typescript": "^3.0.3"
},
"dependencies": {
"fs-extra": "^7.0.0",
"ftp": "^0.3.10"
},
"engines": {
"node": ">= 6.0.x"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"author": "qiansc",
"nyc": {
"extension": [
".ts",
".tsx"
],
"include": [
"src/**/*.ts"
],
"exclude": [
"**/*.d.ts"
],
"reporter": [
"html"
],
"all": true
}
}