This repository has been archived by the owner on Jul 20, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 2.9 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"bin": {
"baa": "./build/cli/index.js"
},
"name": "browserslist-adobe-analytics",
"version": "1.0.2",
"description": "Use Adobe Analytics data to target browsers.",
"keywords": [
"browserslist",
"adobe analytics",
"custom usage data",
"caniuse"
],
"main": "build/index.js",
"repository": "[email protected]:xeroxinteractive/browserslist-adobe-analytics.git",
"author": "Andrew Leedham <[email protected]>",
"license": "MIT",
"scripts": {
"build": "yarn run build:clean && tsc --project ./tsconfig.build.json && chmod +x ./build/cli/index.js",
"build:windows": "yarn run build:clean && tsc --project ./tsconfig.build.json",
"build:clean": "rm -rf ./build",
"test": "jest",
"lint": "eslint ./source/ --ext .ts",
"type-check": "tsc",
"format": "yarn run lint --fix",
"deploy": "semantic-release --branches release",
"prepublishOnly": "yarn run build"
},
"engines": {
"node": ">=10"
},
"browserslist": [
"current node"
],
"commitlint": {
"extends": [
"@xerox/commitlint-config"
]
},
"prettier": "@xerox/prettier-config",
"eslintConfig": {
"extends": [
"@xerox",
"@xerox/eslint-config/typescript"
]
},
"release": {
"extends": "@xerox/semantic-release-config/npm-next"
},
"publishConfig": {
"access": "public"
},
"jest": {
"testRunner": "jest-circus/runner",
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/node_modules/",
"/__tests__/__specs__/"
],
"preset": "ts-jest"
},
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@types/browserslist": "^4.4.0",
"@types/caniuse-lite": "^1.0.0",
"@types/jest": "^26.0.0",
"@types/node": "^12.12.39",
"@types/node-fetch": "^2.5.3",
"@types/semver": "^7.1.0",
"@xerox/commitlint-config": "^2.1.1",
"@xerox/eslint-config": "^3.1.3",
"@xerox/prettier-config": "^2.2.1",
"@xerox/semantic-release-config": "^2.2.2",
"caniuse-lite": "^1.0.30001011",
"eslint": "^7.2.0",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.21.2",
"husky": "^4.3.8",
"jest": "^26.0.1",
"jest-circus": "^26.0.1",
"jest-package-audit": "^3.1.2",
"mockdate": "^3.0.0",
"prettier": "^2.0.2",
"semantic-release": "^17.0.4",
"ts-jest": "^26.0.0",
"typescript": "^4.0.2"
},
"resolutions": {
"set-value": ">=2.0.1",
"mem": ">=4.0.0",
"https-proxy-agent": ">=2.2.3",
"handlebars": ">=4.5.2",
"acorn": ">=7.1.1",
"kind-of": ">=6.0.3",
"minimist": ">=1.2.3",
"yargs-parser": ">=13.1.2 <14.0.0 || >=15.0.1 <16.0.0 || >=18.1.2",
"@types/node": "^12.12.39",
"dot-prop": ">=5.1.1"
},
"dependencies": {
"@adobe/jwt-auth": "^0.3.1",
"browserslist": "^4.8.2",
"moment": "^2.25.1",
"node-fetch": "^2.6.0",
"ora": "^5.0.0",
"semver": "^7.1.1",
"yargs": "^16.0.0"
}
}