-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 2.6 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "wc-lib",
"bin": {
"wclib": "./bin/bin.js",
"wc-lib": "./bin/bin.js"
},
"repository": {
"type": "git",
"url": "https://github.com/SanderRonde/wc-lib.git"
},
"version": "1.2.8",
"description": "A webcomponent framework",
"main": "build/cjs/wc-lib.js",
"browser": "build/es/wc-lib.js",
"module": "build/es/wc-lib.js",
"sideEffects": false,
"author": "Sander Ronde <[email protected]>",
"license": "MIT",
"files": [
"bin/**/*.js",
"build/**"
],
"@std/esm": "cjs",
"ava": {
"files": [
"test/**/*.test.js"
],
"babel": true,
"ignoredByWatcher": [
"**/*.ts",
"**/*.map"
]
},
"nyc": {
"exclude": [
"test/**"
]
},
"dependencies": {
"css": "^2.2.4",
"glob": "^7.1.6",
"htmlparser2": "^4.0.0",
"through2": "^3.0.1",
"typescript": "^4.0.2"
},
"devDependencies": {
"@ava/babel": "^1.0.1",
"@types/css": "^0.0.31",
"@types/fs-extra": "^7.0.0",
"@types/glob": "^7.1.1",
"@types/gulp": "^4.0.6",
"@types/gulp-header": "^2.0.0",
"@types/gulp-replace": "^0.0.31",
"@types/http-server": "^0.10.0",
"@types/node": "^12.12.14",
"@types/rimraf": "^2.0.3",
"@types/through2": "^2.0.34",
"@types/webpack": "^4.41.1",
"ava": "^3.2.0",
"chai": "^4.2.0",
"chai-jquery": "^2.1.0",
"concurrently": "^5.1.0",
"cypress": "^4.0.1",
"esbuild": "^0.11.20",
"esm": "^3.2.25",
"fs-extra": "^8.0.1",
"gulp": "^4.0.2",
"gulp-clean": "^0.4.0",
"gulp-header": "^2.0.9",
"gulp-replace": "^1.0.0",
"http-server": "^0.11.1",
"istanbul-lib-coverage": "^2.0.5",
"jquery": "^3.4.1",
"lit-html": "^1.3.0",
"lodash": "^4.17.13",
"makfy": "^2.0.4",
"nyc": "^14.1.1",
"prettier": "^2.1.1",
"prettier-plugin-sort-imports": "^1.0.0",
"pretty-quick": "^3.0.2",
"remap-istanbul": "^0.13.0",
"rimraf": "^3.0.0",
"rollup": "^2.2.0",
"ts-node": "^8.2.0",
"uglify-es": "^3.3.9",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.11"
},
"peerDependencies": {
"lit-html": "^1.3.0"
},
"scripts": {
"prepack": "makfy prepack",
"commands": "makfy --list",
"pretty": "pretty-quick",
"cypress": "node test/usage/test.js",
"ava": "ava"
}
}