forked from PacktDev/rustici-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.05 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
{
"name": "@packt/rustici-sdk",
"version": "1.3.0",
"description": "Wrapper for Rustici API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"files": [
"dist/**/*"
],
"scripts": {
"build": "tsc",
"lint": "tslint -p tsconfig.json",
"lint:fix": "tslint -p tsconfig.json --fix",
"test": "nyc mocha --require ts-node/register --require source-map-support/register --recursive 'tests/**/*.ts'",
"clean": "rm -rf dist && rm -rf coverage && rm -rf .nyc_output",
"prepublishOnly": "npm run lint && npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/PacktDev/rustici-nodejs.git"
},
"author": {
"name": "Packt Publishing Ltd",
"url": "https://www.packtpub.com/"
},
"contributors": [
{
"name": "Ashutosh Bane",
"email": "[email protected]"
}
],
"engines": {
"node": ">=8.10"
},
"license": "MIT",
"homepage": "https://github.com/PacktDev/rustici-nodejs#readme",
"dependencies": {
"@types/debug": "4.1.4",
"@types/superagent": "4.1.3",
"debug": "4.1.1",
"superagent": "5.1.0",
"axios": "0.19.0"
},
"devDependencies": {
"@types/chai": "4.1.7",
"@types/mocha": "5.2.7",
"@types/nock": "10.0.3",
"@types/rewire": "2.5.28",
"chai": "4.2.0",
"husky": "3.0.1",
"lint-staged": "9.2.0",
"mocha": "6.2.0",
"nock": "10.0.6",
"node-typescript": "0.1.3",
"nyc": "14.1.1",
"prettier": "1.18.2",
"rewire": "4.0.1",
"source-map-support": "0.5.12",
"superagent-mock": "3.7.0",
"ts-node": "8.3.0",
"tslint": "5.18.0",
"tslint-config-prettier": "1.18.0",
"typescript": "3.5.3"
},
"nyc": {
"check-coverage": true,
"sourceMap": true,
"instrument": true,
"lines": 90,
"statements": 90,
"functions": 90,
"branches": 90,
"extension": [
".ts"
],
"include": [
"src/**/*.ts"
],
"exclude": [
"**/*.d.ts"
],
"reporter": [
"lcov",
"html"
],
"all": true
}
}