-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
64 lines (64 loc) · 1.67 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
{
"name": "split-me",
"version": "1.3.0",
"description": "Universal web component to create arbitrary split layouts ",
"main": "dist/index.cjs.js",
"module": "dist/custom-elements/index.js",
"es2015": "dist/esm/index.mjs",
"es2017": "dist/esm/index.mjs",
"types": "dist/custom-elements/index.d.ts",
"collection": "dist/collection/collection-manifest.json",
"collection:main": "dist/collection/index.js",
"unpkg": "dist/split-me/split-me.esm.js",
"files": [
"dist/",
"loader/"
],
"scripts": {
"build": "stencil build --docs",
"start": "stencil build --dev --watch --serve",
"test": "stencil test --spec --e2e",
"test.spec": "stencil test --spec",
"test.e2e": "stencil test --e2e",
"test.watch": "stencil test --spec --e2e --watchAll",
"prepublishOnly": "rm -rf .stencil/ dist/ www/ && npm install && npm run build"
},
"dependencies": {
"lodash.throttle": "^4.1.1"
},
"devDependencies": {
"@stencil/core": "^2.3.0",
"@types/jest": "^26.0.20",
"@types/lodash.throttle": "^4.1.6",
"husky": "^4.3.7",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alesgenova/split-me.git"
},
"author": "Alessandro Genova",
"license": "MIT",
"bugs": {
"url": "https://github.com/alesgenova/split-me"
},
"homepage": "https://github.com/alesgenova/split-me",
"keywords": [
"splitter",
"split-layout",
"stenciljs",
"javascript",
"typescript",
"webcomponents"
],
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"publishConfig": {
"access": "public"
}
}