-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.87 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": "domponent",
"version": "2.0.2",
"description": "Build components with the HTML you already have.",
"keywords": [
"component",
"ui",
"stimulus",
"vue",
"react",
"reactive",
"lifecyle",
"server-side",
"html",
"data",
"state",
"props"
],
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/tamb/domponent.git"
},
"homepage": "https://tamb.github.io/domponent/",
"main": "dist/domponent.production.min.js",
"unpkg": "dist/domponent.production.min.js",
"scripts": {
"deploy": "npm test && node clean.js && rollup -c rollup.config.js && npm pack && cd examples/site && npm install && webpack --mode=production && cd ../../ && gh-pages -d examples/site/dist",
"test": "jest",
"build": "npm test && rollup -c rollup.config.js",
"e2e-prod": "npm test && node clean.js && rollup -c rollup.config.js && npm pack && cd examples/e2e && npm install && npm run build",
"e2e-dev": "npm test && node clean.js && rollup -c rollup.config.js && npm pack && cd examples/e2e && npm install && npm run dev",
"site": "cd examples/site && npm run start",
"site-dev": "cd examples/site && npm run start:dev",
"publish": "npm run build && npm publish"
},
"files": [
"dist"
],
"author": "tamb",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@babel/preset-env": "^7.5.5",
"@testing-library/jest-dom": "^5.5.0",
"gh-pages": "^2.1.1",
"husky": "^3.0.5",
"jest": "^24.9.0",
"open": "^7.0.0",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1",
"rimraf": "^2.6.3",
"rollup": "^1.18.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-strip-code": "^0.2.7",
"rollup-plugin-terser": "^5.1.1",
"vue-template-compiler": "^2.6.10"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}