-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.32 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
73
74
75
76
{
"name": "springtype-types",
"version": "3.2.14",
"publishConfig": {
"access": "public"
},
"types": "dist/index.d.ts",
"homepage": "https://github.com/springtype-org/springtype-types",
"repository": {
"url": "git+https://github.com/springtype-org/springtype-types.git",
"type": "git"
},
"bugs": {
"url": "https://github.com/springtype-org/springtype-types/issues"
},
"description": "Types of 1k TypeScript/TSX nano-framework for the web",
"keywords": [
"TSX",
"Types",
"JSX",
"microframework",
"2k",
"TypeScript",
"zero-dependency",
"fast",
"DOM"
],
"scripts": {
"clean": "npx st-rm-rf dist",
"prebuild": "yarn clean",
"build": " tsc && rimraf dist/**/*.js && touch dist/index.js",
"postbuild": "npx st-cp package.json .npmignore README.md LICENSE dist",
"prerelease": "yarn build",
"release": "cd dist && yarn publish",
"format:fix": "pretty-quick --verbose --pattern 'src/**/*.ts{,x}'",
"format:fix:staged": "yarn format:fix --staged",
"format:check": "pretty-quick --check --verbose --pattern 'src/**/*.ts{,x}'",
"lint:fix": "eslint --ext ts 'src/**/*.ts{,x}' --fix",
"lint:check": "eslint --ext ts 'src/**/*.ts{,x}'"
},
"author": "Aron Homberg <info@aron-homberg.de>",
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "yarn format:fix:staged && yarn lint:check",
"pre-push": "yarn audit --level MODERATE",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@types/jest": "^25.2.1",
"@types/node": "^13.13.2",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"conventional-changelog-conventionalcommits": "^4.5.0",
"eslint": "^7.19.0",
"eslint-config-airbnb": "18.2.1",
"eslint-config-airbnb-typescript": "^12.0.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.3.8",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"rimraf": "^3.0.2",
"typescript": "^4.1.3"
},
"dependencies": {
"csstype": "^3.0.6"
}
}