forked from alesgenova/split-me
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.54 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
{
"name": "split-me",
"version": "1.1.8",
"description": "Universal web component to create arbitrary split layouts ",
"module": "dist/esm/index.js",
"main": "dist/index.js",
"types": "dist/types/components.d.ts",
"collection": "dist/collection/collection-manifest.json",
"files": [
"dist/"
],
"scripts": {
"build": "stencil build",
"docs": "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": "^0.18.0",
"@types/jest": "23.3.14",
"@types/lodash.throttle": "^4.1.5",
"husky": "^1.3.1",
"jest": "23.6.0",
"jest-cli": "23.6.0",
"prettier": "^1.16.4",
"pretty-quick": "^1.10.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"
}
}