-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.27 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
{
"name": "@orisomething/browser-storage",
"version": "0.1.1",
"license": "MIT",
"author": "Ori Livni",
"repository": {
"type": "git",
"url": "https://github.com/oriSomething/browser-storage"
},
"engines": {
"node": ">= 12"
},
"scripts": {
"prepack": "yarn run build",
"build": "rm -rf dist && microbundle --target node --compress",
"lint": "eslint lib/**/*.{js,ts} --max-warnings 0",
"pretest": "yarn run build",
"test": "ava"
},
"source": "lib/index.ts",
"main": "dist/index.js",
"module": "dist/index.mjs",
"esmodule": "dist/index.modern.js",
"unpkg": "dist/index.umd.js",
"sideEffects": false,
"resolutions": {
"typescript": "^4.1.2"
},
"files": [
"dist/*",
"tsconfig.json"
],
"devDependencies": {
"@types/puppeteer": "^5.4.0",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"ava": "^3.13.0",
"eslint": "^7.14.0",
"microbundle": "^0.12.4",
"prettier": "^2.2.0",
"puppeteer": "^5.5.0",
"ts-node": "^9.0.0",
"typescript": "^4.1.2"
},
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register/transpile-only"
]
},
"browserslist": [
"node 12"
],
"mangle": {
"regex": "^_"
}
}