-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
68 lines (68 loc) · 1.75 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
{
"name": "@apimatic/file-wrapper",
"author": "APIMatic Ltd.",
"version": "0.3.4",
"license": "MIT",
"sideEffects": false,
"main": "lib/index.js",
"module": "es/index.js",
"types": "lib/index.d.ts",
"files": [
"umd",
"lib/**/*.js",
"lib/**/*.d.ts",
"es/**/*.js",
"es/**/*.d.ts",
"src",
"LICENSE.md"
],
"engines": {
"node": ">=14.15.0 || >=16.0.0"
},
"scripts": {
"clean": "rm -rf lib es umd tsconfig.tsbuildinfo",
"test": "jest",
"build": "npm run clean && tsc && rollup -c --bundleConfigAsCjs && npm run annotate:es",
"annotate:es": "babel es --out-dir es --no-babelrc --plugins annotate-pure-calls",
"preversion": "npm run test",
"prepublishOnly": "npm run build",
"size": "size-limit",
"analyze": "size-limit --why",
"lint": "tslint --project .",
"lint:fix": "tslint --project . --fix",
"check-style": "prettier --check \"{src,test}/**/*.ts\"",
"check-style:fix": "prettier --write \"{src,test}/**/*.ts\""
},
"size-limit": [
{
"path": "es/index.js",
"limit": "5 KB"
}
],
"devDependencies": {
"@babel/cli": "^7.26.4",
"@babel/core": "^7.26.0",
"@size-limit/preset-small-lib": "^7.0.8",
"babel-plugin-annotate-pure-calls": "^0.4.0",
"jest": "^26.6.3",
"jsdom": "^19.0.0",
"jsdom-global": "^3.0.2",
"lerna-alias": "3.0.3-0",
"rollup": "^3.29.5",
"rollup-plugin-typescript2": "^0.31.0",
"size-limit": "^7.0.8",
"ts-jest": "^26.4.0",
"typescript": "^4.9.5"
},
"dependencies": {
"tslib": "2.8.1"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "[email protected]:apimatic/apimatic-js-runtime.git",
"directory": "packages/file-wrapper"
}
}