-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.34 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
{
"name": "@tru_id/tru-sdk-web",
"version": "0.0.11",
"description": "SDK for tru.ID that provides a helper method for requesting the `check_url` for PhoneCheck and SubscriberCheck",
"author": {
"name": "tru.ID",
"email": "[email protected]",
"url": "https://tru.id"
},
"repository": "github:tru-ID/tru-sdk-web",
"keywords": [
"2FA",
"MFA",
"Number Verify"
],
"main": "dist/tru-id-sdk.js",
"module": "dist/tru-id-sdk.mjs",
"browser": "dist/tru-id-sdk.umd.js",
"type": "module",
"devDependencies": {
"@types/jest": "^26.0.23",
"canvas": "^2.8.0",
"eslint": "^7.27.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"jest": "^27.0.3",
"jest-fetch-mock": "^3.0.3",
"nock": "^13.1.0",
"prettier": "^2.3.0",
"rollup": "^2.50.5",
"serve": "^11.3.2",
"standard-version": "^9.3.0"
},
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"serve": "serve",
"lint": "eslint src",
"prettier": "prettier src --write",
"test": "jest",
"publish-canary": "npm publish --access public",
"changelog": "standard-version"
},
"standard-version": {
"skip": {
"commit": true,
"bump": true,
"tag": true
}
},
"files": [
"dist"
],
"license": "MIT"
}