-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.84 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
{
"name": "@enface/sdk",
"version": "1.1.6",
"description": "Enface biometric services",
"author": "Enface LTD",
"main": "./dist/enface.node.js",
"browser": {
"./dist/enface.node.js": "./dist/enface.web.js"
},
"scripts": {
"build": "webpack --config webpack.config.js",
"prepublishOnly": "npm run build",
"test": "jest",
"test:watch": "jest --watch --verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/safead/enface-sdk-js.git"
},
"keywords": [
"enface",
"biometric",
"face",
"detection",
"liveness",
"sdk"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/safead/enface-sdk-js/issues"
},
"homepage": "https://enface.io",
"dependencies": {
"apollo-cache-inmemory": "^1.6.3",
"apollo-client": "^2.6.4",
"apollo-link": "^1.2.13",
"apollo-link-http-common": "^0.2.15",
"cross-fetch": "^3.0.4",
"graphql": "^14.5.8",
"graphql-tag": "^2.10.1",
"request": "^2.88.0"
},
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.6.3",
"@babel/runtime": "^7.6.3",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^3.0.0",
"eslint": "^6.5.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.19.0",
"jest": "^24.9.0",
"mock-apollo-client": "^0.2.0",
"parallel-webpack": "^2.4.0",
"terser-webpack-plugin": "^2.1.3",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.9"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"__mocks__",
"__utils__",
"__tests__/apiMocked.js"
]
}
}