-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.69 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.69 KB
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
{
"name": "@statickit/html",
"version": "1.3.1",
"description": "The HTML client library for StaticKit",
"keywords": [
"statickit"
],
"homepage": "https://statickit.com/docs/html",
"bugs": {
"url": "https://github.com/unstacked/statickit-html/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/unstacked/statickit-html.git"
},
"license": "MIT",
"author": "Derrick Reimer",
"files": [
"dist/statickit.esm.js",
"dist/statickit.cjs.js",
"public/statickit.js",
"public/statickit.min.js"
],
"main": "dist/statickit.cjs.js",
"module": "dist/statickit.esm.js",
"scripts": {
"build": "rollup -c",
"prepare": "npm run build",
"release": "np",
"test": "jest"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm run build && git add public/"
}
},
"lint-staged": {
"*.{js,css,json,md}": [
"npx prettier --write",
"git add"
],
"package.json": [
"npx sort-package-json",
"git add"
]
},
"dependencies": {
"@statickit/core": "^1.6.0",
"hyperscript": "^2.0.2"
},
"devDependencies": {
"@babel/cli": "7.8.4",
"@babel/core": "^7.4.5",
"@babel/preset-env": "7.6.0",
"husky": "3.0.5",
"jest": "24.9.0",
"lint-staged": "9.2.5",
"np": "5.1.1",
"object-assign": "4.1.1",
"prettier": "1.18.2",
"rollup": "1.17.0",
"rollup-plugin-babel": "4.3.3",
"rollup-plugin-commonjs": "10.0.1",
"rollup-plugin-json": "4.0.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-terser": "5.2.0",
"sort-package-json": "1.22.1"
},
"publishConfig": {
"access": "public"
},
"np": {
"yarn": false
}
}