-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
78 lines (78 loc) · 1.97 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
{
"name": "@adzerk/decision-sdk",
"version": "1.0.0-beta.25",
"description": "SDK for interacting with Adzerk's Decision API",
"main": "lib/index.js",
"clientSideApp": "dist/adzerk-decision-sdk.js",
"targets": {
"clientSideApp": {
"source": "lib/index.js",
"outputFormat": "global"
}
},
"scripts": {
"test": "jest",
"start": "nodemon --watch 'src/**/*.ts' --exec 'tsc -p' .",
"build": "tsc -p ./src && sed -i \"s/{NPM_PACKAGE_VERSION}/$npm_package_version/g\" lib/client.js && parcel build",
"refresh": "rm -rf ./node_modules ./package-lock.json && npm install",
"size": "size-limit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adzerk/adzerk-decision-sdk-js.git"
},
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/adzerk/adzerk-decision-sdk-js/issues"
},
"homepage": "https://github.com/adzerk/adzerk-decision-sdk-js#readme",
"devDependencies": {
"@size-limit/preset-small-lib": "^8.1.0",
"@types/debug": "^4.1.5",
"@types/jest": "^24.0.23",
"@types/node": "^12.11.7",
"@types/node-fetch": "^2.5.3",
"husky": "^5.0.9",
"jest": "^26.5.6",
"lint-staged": "^9.4.3",
"node-fetch": "^2.6.7",
"node-forge": "^1.3.0",
"node-notifier": ">=8.0.1",
"nodemon": "^3.0.1",
"parcel": "^2.0.0",
"prettier": "^1.19.1",
"process": "^0.11.10",
"size-limit": "^8.1.0",
"ts-jest": "^26.5.1",
"ts-node": "^8.4.1",
"typescript": "^3.6.4"
},
"overrides": {
"tough-cookie": "^4.1.3",
"word-wrap": "^1.2.4"
},
"lint-staged": {
"*.{js,ts,css,md}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"@adzerk/api-decision-js": "^1.0.10",
"debug": "^4.1.1",
"form-data": "^2.5.1",
"isomorphic-unfetch": "^3.1.0"
},
"jest": {
"testEnvironment": "node"
},
"publishConfig": {
"access": "public"
},
"size-limit": [
{
"path": "lib/index.js"
}
]
}