-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
47 lines (47 loc) · 1.29 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
{
"name": "fiken",
"version": "1.1.3",
"private": false,
"description": "Fiken API Client",
"repository": "github:bjerkio/fiken-js",
"license": "Apache-2.0",
"author": "Bjerk AS <[email protected]>",
"main": "build/src/index.js",
"files": [
"build/"
],
"scripts": {
"clean": "rimraf coverage build tmp",
"generate-docs": "typedoc --mode file --readme none --plugin typedoc-plugin-markdown --hideSources --out docs src",
"build": "tsc -p tsconfig.release.json",
"build:watch": "tsc -w -p tsconfig.release.json",
"lint": "eslint . --ext .ts,.tsx",
"test": "jest --coverage",
"test:watch": "jest --watch"
},
"dependencies": {
"form-data": "^4.0.0",
"node-fetch": "^2.6.1"
},
"devDependencies": {
"@types/jest": "~26.0.3",
"@types/node": "~12.19.0",
"@typescript-eslint/eslint-plugin": "~2.34.0",
"@typescript-eslint/parser": "~2.34.0",
"eslint": "~6.8.0",
"eslint-config-prettier": "~6.15.0",
"eslint-plugin-jest": "~24.1.3",
"jest": "~25.5.0",
"nock": "^13.0.0",
"prettier": "~2.2.0",
"rimraf": "~3.0.2",
"ts-jest": "~25.5.0",
"tsutils": "~3.17.0",
"typedoc": "^0.19.2",
"typedoc-plugin-markdown": "^2.2.16",
"typescript": "~3.9.2"
},
"publishConfig": {
"access": "public"
}
}