-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
72 lines (72 loc) · 1.68 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
{
"name": "linode-v4",
"version": "0.0.0-development",
"description": "Linode v4 alpha API client",
"main": "index.js",
"typings": "index.d.ts",
"scripts": {
"debug": "node --nolazy -r ts-node/register/transpile-only --inspect=9229 ./src/generator/openapi-to-node-client",
"openapi": "ts-node -T ./src/generator/openapi-to-node-client",
"cover": "nyc npm t",
"codeclimate:report": "codeclimate-test-reporter < coverage/lcov.info",
"semantic-release": "semantic-release",
"test": "mocha test/*.test.ts",
"test:live": "mocha test/*.test.ts --watch --recursive --watch-extensions ts",
"build": "tsc && npm run openapi && npm run openapi -- def && npm run openapi -- test && npm run openapi -- call && npm run openapi -- readme"
},
"engines": {
"node": ">= 8.7.0",
"vscode": "*"
},
"author": "Gerardo Pérez Pérez ([email protected])",
"license": "MIT",
"dependencies": {
"axios": "^0.18.0",
"js-yaml": "^3.13.1"
},
"files": [
"*.js",
"*.d.ts",
"README.md",
"LICENSE",
"specification.json"
],
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.6",
"@types/node": "^11.13.2",
"chai": "^4.2.0",
"i": "^0.3.6",
"mocha": "^6.1.2",
"nyc": "^13.3.0",
"ts-node": "^8.0.3",
"typescript": "3.4.2",
"yamljs": "^0.3.0"
},
"nyc": {
"lines": 99,
"statements": 99,
"functions": 99,
"branches": 99,
"reporter": [
"lcov",
"text"
],
"include": [
"src/*.ts"
],
"extension": [
".ts"
],
"sourceMap": true,
"instrument": true,
"cache": true,
"check-coverage": true,
"all": true,
"report-dir": "./coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/gerard2p/linode-v4.git"
}
}