forked from onfido/onfido-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.58 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
{
"name": "@onfido/api",
"version": "2.1.0",
"description": "Node.js library for the Onfido API",
"keywords": [
"onfido",
"identity",
"verification",
"api"
],
"homepage": "https://github.com/onfido/onfido-node#readme",
"license": "MIT",
"author": "Onfido <[email protected]> (https://documentation.onfido.com)",
"repository": "github:onfido/onfido-node",
"main": "dist/index.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "rollup -c rollup.config.ts",
"test": "jest",
"test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
"inspect": "tslint 'src/**/*.ts' 'test/**/*.ts' && prettier --check README.md",
"format": "tslint 'src/**/*.ts' 'test/**/*.ts' --fix && prettier --write README.md"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"moduleNameMapper": {
"onfido-node": "<rootDir>/src/index"
},
"globals": {
"ts-jest": {
"tsconfig": "test/tsconfig.json"
}
}
},
"devDependencies": {
"@rollup/plugin-json": "^4.1.0",
"@types/jest": "^26.0.15",
"jest": "^26.6.3",
"nock": "^11.7.0",
"prettier": "^1.18.2",
"rollup": "^1.24.0",
"rollup-plugin-typescript2": "^0.25.3",
"ts-jest": "^26.4.4",
"tslint": "^5.20.0",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^4.0.5"
},
"dependencies": {
"axios": "^0.21.1",
"form-data": "^3.0.0"
}
}