forked from doriandres/lit-context
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.4 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.4 KB
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
{
"name": "lit-context",
"version": "1.0.15",
"author": "doriandres",
"license": "MIT",
"scripts": {
"start": "parcel index.html --open --out-dir build",
"test": "echo \"No test specified\"",
"lint": "tsdx lint",
"prepare": "cross-env NODE_ENV=production tsdx build --name lit-context --format esm,cjs,umd",
"build": "tsdx build --name lit-context --format esm,cjs,umd",
"semantic-release": "semantic-release"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"dependencies": {
"lit": "^2.8.0",
"tslib": "^1.11.1"
},
"devDependencies": {
"@babel/core": "^7.8.7",
"cross-env": "^7.0.2",
"parcel-bundler": "^1.12.4",
"prettier": "^1.19.1",
"rimraf": "^3.0.2",
"semantic-release": "^17.0.4",
"tsdx": "^0.12.3",
"typescript": "^3.8.3"
},
"browserslist": [
"last 1 chrome version"
],
"sideEffects": false,
"module": "dist/lit-context.esm.js",
"main": "dist/index.js",
"umd:main": "dist/lit-context.umd.production.min.js",
"unpkg": "dist/lit-context.umd.production.min.js",
"jsdelivr": "dist/lit-context.umd.production.min.js",
"source": "src/lit-context.ts",
"types": "./dist/lit-context.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/doriandres/lit-context.git"
}
}