-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.65 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
{
"name": "@abcnews/env-utils",
"version": "4.0.0",
"description": "Utilities for identifying aspects of your code's execution environment and respectfully interacting with the DOM",
"license": "MIT",
"author": "Australian Broadcasting Corporation",
"contributors": [
"Colin Gourlay <[email protected]>"
],
"repository": {
"type": "git",
"url": "git+https://github.com/abcnews/env-utils.git"
},
"bugs": {
"url": "https://github.com/abcnews/env-utils/issues"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"start": "tsup src/index.ts --dts --sourcemap --format esm,cjs --watch",
"build": "tsup src/index.ts --dts --sourcemap --format esm,cjs",
"lint": "eslint src",
"test": "jest",
"prepublishOnly": "npm run build",
"release": "np",
"size": "size-limit",
"prepare": "husky install"
},
"size-limit": [
{
"path": "dist/index.mjs",
"limit": "5 kB"
}
],
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5",
"arrowParens": "avoid"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@babel/core": "^7.13.1",
"@size-limit/preset-small-lib": "^8.1.0",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"eslint": "^8.26.0",
"husky": "^8.0.1",
"jest": "^29.2.2",
"jest-environment-jsdom": "^29.2.2",
"np": "^7.4.0",
"size-limit": "^8.1.0",
"ts-jest": "^29.0.3",
"tslib": "^2.1.0",
"tsup": "^6.3.0",
"typescript": "^4.2.2"
}
}