-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 2.4 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
{
"name": "rollup-plugin-strip-exports",
"version": "1.0.2",
"description": "Remove unwanted exports from your code.",
"keywords": [
"rollup",
"rollup-plugin",
"strip-exports",
"iife"
],
"main": "build/index.js",
"repository": "git@github.com:xeroxinteractive/rollup-plugin-strip-exports.git",
"author": "Andrew Leedham <Andrew.Leedham@xerox.com>",
"license": "MIT",
"scripts": {
"build": "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"
},
"publishConfig": {
"access": "public"
},
"jest": {
"testRunner": "jest-circus/runner",
"testPathIgnorePatterns": [
"/node_modules/",
"/__tests__/__specs__/"
],
"preset": "ts-jest"
},
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@types/astring": "^1.3.0",
"@types/estree": "^0.0.50",
"@types/jest": "^26.0.1",
"@types/node": "^12.12.39",
"@xerox/commitlint-config": "^2.1.1",
"@xerox/eslint-config": "^3.1.4",
"@xerox/prettier-config": "^2.2.1",
"@xerox/semantic-release-config": "^2.2.2",
"eslint": "^7.3.1",
"globby": "^11.0.0",
"husky": "^4.3.8",
"jest": "^26.0.1",
"jest-circus": "^27.0.0",
"jest-package-audit": "^3.1.2",
"prettier": "^2.0.2",
"rollup": "^2.0.2",
"semantic-release": "^17.0.7",
"ts-jest": "^26.0.0",
"typescript": "^4.0.2"
},
"dependencies": {
"astring": "^1.4.3",
"estree-walker": "^2.0.1",
"magic-string": "^0.25.4",
"rollup-pluginutils": "^2.8.2"
},
"resolutions": {
"estree-walker": ">=0.8.1",
"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",
"@types/node": "^12.12.39",
"dot-prop": ">=5.1.1"
}
}