-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.2 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
{
"name": "@fmtk/validation",
"private": false,
"version": "3.6.1",
"description": "Easy validation",
"main": "lib/bundle.js",
"module": "lib/bundle.esm.js",
"types": "lib/index.d.ts",
"repository": "https://github.com/futurematik/validation",
"author": "Gordon Leigh <[email protected]>",
"license": "MIT",
"scripts": {
"build": "npm run clean && npm run lint && npm run compile",
"bumpfeat": "npm version minor && npm publish",
"bumpfix": "npm version patch && npm publish",
"bumpmajor": "npm version major && npm publish",
"clean": "rm -rf lib/",
"compile": "rollup -c",
"lint": "eslint \"src/**\"",
"postversion": "git push --follow-tags",
"prepare": "npm run build",
"preversion": "npm run build"
},
"devDependencies": {
"@fmtk/rollup-plugin-ts": "^0.3.2",
"@types/jest": "^26.0.10",
"@types/node": "^12.0",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^24.9.0",
"prettier": "^2.1.1",
"rollup": "^1.26.4",
"ts-jest": "^26.3.0",
"typescript": "^3"
}
}