-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.49 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
{
"name": "@cpepin/haunted-forms",
"version": "0.0.1",
"description": "A lightweight form library for haunted-js",
"main": "bundle.umd.js",
"module": "bundle.esm.js",
"files": [
"bundle.umd.js",
"bundle.esm.js"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "webpack-dev-server --hot",
"build": "NODE_ENV=production rollup --config rollup.esm.config.js && rollup --config rollup.umd.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cpepin/haunted-forms.git"
},
"keywords": [],
"author": "Cam Pepin <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/cpepin/haunted-forms/issues"
},
"homepage": "https://github.com/cpepin/haunted-forms#readme",
"devDependencies": {
"babel-eslint": "^10.0.3",
"clean-webpack-plugin": "^3.0.0",
"eslint": "^6.5.1",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-prettier": "^3.1.1",
"html-webpack-plugin": "^3.2.0",
"husky": "^3.0.9",
"lint-staged": "^9.4.2",
"prettier": "1.18.2",
"rollup": "^1.24.0",
"rollup-plugin-node-resolve": "^5.2.0",
"webpack": "^4.41.0",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.8.2"
},
"dependencies": {
"haunted": "^4.6.1",
"lit-html": "^1.1.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,json,md}": [
"prettier --write",
"git add"
]
}
}