This repository has been archived by the owner on May 8, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.63 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
{
"name": "onfido-sdk-core",
"version": "1.1.0",
"description": "JavaScript SDK core layer for Onfido identity verification",
"main": "lib/index.js",
"files": [
"lib",
"src"
],
"scripts": {
"clean": "rimraf lib dist coverage",
"lint": "eslint test build",
"test": "cross-env BABEL_ENV=commonjs mocha --compilers js:babel-core/register",
"test:watch": "npm test -- --watch",
"test:cov": "cross-env BABEL_ENV=commonjs babel-node $(npm bin)/isparta cover $(npm bin)/_mocha -- --recursive",
"check:src": "npm run lint && npm run test",
"build:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir lib",
"build": "npm run build:commonjs",
"prepublish": "npm run clean && npm run check:src && npm run build",
"docs:clean": "rimraf _book",
"docs:prepare": "gitbook install",
"docs:build": "npm run docs:prepare && gitbook build -g reactjs/onfido",
"docs:watch": "npm run docs:prepare && gitbook serve",
"docs:publish": "npm run docs:clean && npm run docs:build && cp CNAME _book && cd _book && git init && git commit --allow-empty -m 'update book' && git checkout -b gh-pages && touch .nojekyll && git add . && git commit -am 'update book' && git push [email protected]:reactjs/onfido gh-pages --force"
},
"repository": {
"type": "git",
"url": "https://github.com/onfido/onfido-sdk-core.git"
},
"keywords": [
"onfido",
"sdk",
"document",
"capture",
"identity",
"verification"
],
"authors": [
"Lawrence Gosset <[email protected]> (https://github.com/gosseti)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/onfido/onfido-sdk-core"
},
"homepage": "https://onfido.com/sdk",
"dependencies": {
"babel-plugin-transform-runtime": "^6.15.0",
"babel-runtime": "^6.18.0",
"deep-equal": "^1.0.1",
"eventemitter2": "^2.1.3",
"object-assign": "^4.0.1",
"object-loops": "^0.8.0",
"query-string": "^4.1.0",
"reconnectingwebsocket": "^1.0.0",
"redux": "^3.4.0",
"redux-watch": "^1.1.1",
"reselect": "^2.5.1"
},
"devDependencies": {
"babel-cli": "^6.3.15",
"babel-core": "^6.3.15",
"babel-eslint": "^7.0.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.3.13",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.3.13",
"cross-env": "3.2.4",
"eslint": "^3.5.0",
"eslint-config-rackt": "^1.1.1",
"eslint-plugin-babel": "^3.2.0",
"eslint-plugin-react": "^6.2.2",
"expect": "^1.8.0",
"gitbook-cli": "^2.3.0",
"glob": "^7.0.6",
"isparta": "^4.0.0",
"mocha": "3.0.2",
"rimraf": "^2.3.4"
}
}