This repository has been archived by the owner on Aug 25, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
72 lines (72 loc) · 1.88 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
65
66
67
68
69
70
71
72
{
"name": "form-wrapper-js",
"version": "1.0.0-beta.6",
"description": "JS abstraction for forms",
"main": "dist/index.js",
"module": "dist/index.es.js",
"types": "dist/types/index.d.ts",
"files": [
"dist"
],
"scripts": {
"lint": "eslint src/**/*.ts",
"test": "jest",
"test:prod": "jest --collectCoverage --maxWorkers 2 && npm run lint",
"codecov": "codecov",
"watch": "rollup -cw",
"build": "tsc --module commonjs && rollup -c rollup.config.js",
"prebuild": "rimraf dist",
"prepublishOnly": "npm run build",
"release": "release-it",
"prettier:fix": "prettier src/**/*.ts --config=.prettierrc --write"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"repository": {
"type": "git",
"url": "https://github.com/Nevoss/form-wrapper-js"
},
"bugs": {
"url": "https://github.com/Nevoss/form-wrapper-js/issues"
},
"homepage": "https://nevoss.github.io/form-wrapper-js/",
"keywords": [
"forms",
"form",
"vue",
"form-vue",
"forms-vue",
"js"
],
"author": "Nevo Golan <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/faker": "^4.1.10",
"@types/jest": "^24.9.1",
"@typescript-eslint/eslint-plugin": "^1.13.0",
"@typescript-eslint/parser": "^1.13.0",
"codecov": "^3.6.5",
"dotenv": "^8.2.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-prettier": "^3.1.2",
"faker": "^4.1.0",
"husky": "^4.2.3",
"jest": "^25.1.0",
"prettier": "^1.19.1",
"pretty-quick": "^1.11.1",
"release-it": "^12.6.3",
"rimraf": "^2.7.1",
"rollup": "^1.32.1",
"rollup-plugin-license": "^0.13.0",
"rollup-plugin-sourcemaps": "^0.5.0",
"rollup-plugin-typescript2": "^0.26.0",
"ts-jest": "^24.3.0",
"typescript": "^3.8.3"
},
"dependencies": {},
"peerDependencies": {}
}