-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.5 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
{
"name": "@geoblink/publish-to-npm",
"version": "1.0.2",
"description": "CLI tool to publish a package to NPM",
"bin": {
"publish-to-npm": "dist/index.js"
},
"files": [
"dist"
],
"author": "Geoblink <contact@geoblink.com>",
"license": "MIT",
"scripts": {
"prepublish": "run-s test build",
"build": "tsc -p tsconfig.json",
"test": "run-s test:*",
"test:types": "tsc --noEmit",
"test:unit": "nyc mocha test/**/*.spec.ts"
},
"nyc": {
"extension": [
".ts"
],
"exclude": [
"coverage/**/*",
"dist/**/*",
"docs/**/*",
"test/**/*"
],
"reporter": [
"text",
"html"
],
"all": true
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/chai-as-promised": "^7.1.2",
"@types/mocha": "^5.2.5",
"@types/mock-fs": "^4.10.0",
"@types/node": "^12.12.17",
"@types/sinon": "^7.0.5",
"@types/sinon-chai": "^3.2.2",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.0.2",
"eslint": "^6.1.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"mocha": "^6.1.1",
"mocha-lcov-reporter": "^1.3.0",
"mock-fs": "^4.10.4",
"npm-run-all": "^4.1.5",
"nyc": "^14.1.1",
"sinon": "^7.2.3",
"sinon-chai": "^3.3.0",
"source-map-support": "^0.5.10",
"ts-node": "^8.0.2",
"typescript": "^3.3.1"
}
}