-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
76 lines (76 loc) · 2.53 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
{
"name": "@adobe/lit-mobx",
"version": "2.2.2",
"description": "Integrating mobx with lit-element!",
"license": "Apache-2.0",
"repository": "https://github.com/adobe/lit-mobx",
"type": "module",
"main": "lit-mobx.js",
"module": "lit-mobx.js",
"keywords": [
"lit-html",
"lit-element",
"mobx",
"web component"
],
"files": [
"/lib/",
"/src/",
"/demo/",
"/lit-mobx.d.ts",
"/lit-mobx.d.ts.map",
"/lit-mobx.js",
"/lit-mobx.js.map"
],
"scripts": {
"build": "tsc --build tsconfig.json && tsc --build demo/tsconfig.json",
"build:watch": "tsc --build tsconfig.json -w & tsc --build demo/tsconfig.json -w",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md",
"lint": "eslint -f pretty 'src/**/*.ts'",
"prepublishOnly": "npm run build",
"demo": "npm run build:watch & web-dev-server",
"test": "npm run test:build && wtr",
"test:build": "npm run build && tsc --build test/tsconfig.json",
"test:build-watch": "npm run build:watch & tsc --build test/tsconfig.json -w",
"test:watch": "npm run test:build-watch & wtr --watch"
},
"peerDependencies": {
"lit": "^2.0.0 || ^3.0.0",
"mobx": "^5.0.0 || ^6.0.0"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@open-wc/testing": "^2.5.33",
"@types/estree": "^1.0.0",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"@web/dev-server": "^0.1.36",
"@web/test-runner": "^0.15.1",
"@web/test-runner-playwright": "^0.9.0",
"conventional-changelog-cli": "^2.1.1",
"deepmerge": "^4.2.2",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.8.0",
"eslint-formatter-pretty": "^5.0.0",
"eslint-plugin-notice": "^0.9.10",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^4.3.8",
"lit": "^2.0.0 || ^3.0.0",
"mobx": "^5.15.7",
"prettier": "^2.2.1",
"pretty-quick": "^3.0.0",
"typescript": "^4.0.2"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && npm run lint",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"typings": "lit-mobx.d.ts",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}