-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.59 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
{
"name": "@godzilla-forms/core",
"version": "0.0.12",
"description": "Godzilla Forms core library",
"types": "dist/index.d.ts",
"main": "dist/index.js",
"private": false,
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"watch": "tsc --watch",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "eslint src --ext .js,.jsx,.ts,.tsx",
"prepare": "npm run build",
"prepublishOnly": "npm run lint && npm run build",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"keywords": [
"Godzilla",
"Form Builder"
],
"author": "Abdullah Alhazmy",
"email": "[email protected]",
"license": "MIT",
"homepage": "https://github.com/Godzilla-Forms/core#readme",
"bugs": {
"url": "https://github.com/Godzilla-Forms/core/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Godzilla-Forms/core.git"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"eslint": "^8.26.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.3.0",
"eslint-plugin-promise": "^6.1.1",
"prettier": "^2.7.1",
"typescript": "^4.8.4"
}
}