-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
82 lines (82 loc) · 2.22 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
77
78
79
80
81
82
{
"name": "@converse/skeletor",
"description": "Modernized Backbone with web components",
"url": "https://github.com/conversejs/skeletor",
"main": "src/index.js",
"types": "src/types/index.d.ts",
"browser": "dist/skeletor.js",
"keywords": [
"model",
"view",
"controller",
"router",
"server",
"client",
"browser"
],
"author": "Jeremy Ashkenas",
"contributors": [
"JC Brand"
],
"dependencies": {
"@converse/localforage-getitems": "1.4.3",
"lit-html": "^2.0.0-rc.2",
"localforage": "^1.10.0",
"localforage-driver-memory": "^1.0.5",
"localforage-setitems": "^1.4.0",
"lodash-es": "^4.17.21",
"mergebounce": "0.1.1"
},
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/plugin-external-helpers": "^7.10.1",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
"@babel/plugin-proposal-optional-chaining": "^7.13.12",
"@babel/preset-env": "^7.9.5",
"@rollup/plugin-babel": "^5.0.3",
"@rollup/plugin-node-resolve": "^8.0.1",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"chai": "^4.2.0",
"eslint": "^7.2.0",
"karma": "^6.3.16",
"karma-chrome-launcher": "^3.1.0",
"karma-firefox-launcher": "^1.2.0",
"karma-mocha": "^2.0.1",
"karma-qunit": "^4.1.1",
"karma-webpack": "^4.0.2",
"mocha": "^10.2.0",
"prettier": "^3.0.0",
"qunit": "^2.10.0",
"rollup": "^1.32.1",
"rollup-plugin-sourcemaps": "^0.6.2",
"rollup-plugin-terser": "^5.3.0",
"sinon": "^9.0.2",
"typescript": "^5.1.6",
"typescript-eslint": "^0.0.1-alpha.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"window-or-global": "^1.0.1"
},
"scripts": {
"test": "karma start && karma start karma.mocha.conf && npm run lint",
"dev": "karma start --single-run=false",
"build": "rollup -c",
"types": "tsc",
"lint": "eslint src/*.js test/*.js",
"prettier": "prettier --write src/**/*.js test/**/*.js"
},
"module": "src/main.js",
"version": "0.0.8",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/conversejs/skeletor.git"
},
"files": [
"LICENSE",
"dist/",
"src/"
]
}