-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
84 lines (84 loc) · 2.82 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
{
"name": "iex-cloud",
"version": "2.2.0",
"description": "IEX Cloud API TypeScript Client",
"main": "build/main/index.js",
"typings": "build/main/index.d.ts",
"module": "build/module/index.js",
"repository": "https://github.com/zishe/iex-cloud",
"author": "Alexander Kireev",
"license": "MIT",
"keywords": [
"iex cluod api"
],
"scripts": {
"build": "run-s clean && run-p build:*",
"build:main": "tsc -p tsconfig.json",
"build:module": "tsc -p tsconfig.module.json",
"fix": "run-s fix:*",
"fix:prettier": "prettier \"src/**/*.ts\" --write",
"fix:tslint": "tslint --fix --project .",
"doc": "run-s doc:html && open-cli build/docs/index.html",
"doc:html": "typedoc src/ --theme ./node_modules/typedoc-neo-theme/bin/default --exclude **/*.test.ts --target ES6 --mode file --out build/docs",
"doc:json": "typedoc src/ --theme ./node_modules/typedoc-neo-theme/bin/default --exclude **/*.test.ts --target ES6 --mode file --json build/docs/typedoc.json",
"doc:publish": "gh-pages -m \"[ci skip] Updates\" -d build/docs",
"test": "jest --env=node --colors --coverage",
"coveralls": "cat ./coverage/lcov.info | node node_modules/.bin/coveralls",
"clean": "trash build",
"recordings:clean": "rm -rf ./__recordings__",
"version": "run-s doc:html doc:publish",
"prepare-release": "run-s doc:html standard-version doc:publish",
"release": "np"
},
"dependencies": {
"dotenv": "^8.2.0",
"node-fetch": "^2.6.0"
},
"devDependencies": {
"@pollyjs/adapter-node-http": "^4.3.0",
"@pollyjs/core": "^4.3.0",
"@pollyjs/persister-fs": "^4.3.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/npm": "^7.0.5",
"@semantic-release/release-notes-generator": "^9.0.1",
"@types/jasmine": "^3.5.10",
"@types/jest": "^26.0.0",
"@types/nock": "^11.1.0",
"@types/node-fetch": "^2.5.7",
"@types/setup-polly-jest": "^0.5.0",
"coveralls": "^3.1.0",
"gh-pages": "^3.0.0",
"jasmine": "^3.5.0",
"jest": "^26.0.1",
"np": "^6.2.4",
"npm-run-all": "^4.1.5",
"open-cli": "^6.0.1",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"semantic-release": "^17.0.8",
"setup-polly-jest": "^0.7.0",
"standard-version": "^8.0.0",
"trash-cli": "^3.0.0",
"ts-jest": "^26.1.0",
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0",
"tslint-immutable": "^6.0.1",
"typedoc": "^0.17.7",
"typedoc-neo-theme": "^1.0.8",
"typescript": "^3.9.5"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/git"
],
"branch": "master"
},
"np": {
"tests": false
}
}