-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
91 lines (91 loc) · 2.86 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "springtype",
"version": "3.2.5",
"publishConfig": {
"access": "public"
},
"source": "src/index.ts",
"main": "dist/index.js",
"exports": "dist/index.modern.js",
"module": "dist/index.module.js",
"unpkg": "dist/index.umd.js",
"homepage": "https://github.com/springtype-org/springtype",
"repository": {
"url": "git+https://github.com/springtype-org/springtype.git",
"type": "git"
},
"bugs": {
"url": "https://github.com/springtype-org/springtype/issues"
},
"description": "1k TypeScript/TSX nano-framework for the web",
"keywords": [
"TSX",
"JSX",
"microframework",
"2k",
"TypeScript",
"zero-dependency",
"fast",
"DOM"
],
"scripts": {
"clean": "npx st-rm-rf dist",
"prebuild": "yarn clean && tsc -p tsconfig.dist.json",
"build": "microbundle",
"watch": "microbundle watch",
"postbuild": "npx st-cp package.json .npmignore README.md LICENSE dist",
"pree2e": "yarn build",
"e2e": "ts-node ./scripts/e2e-build-all.ts",
"poste2e": "testcafe chrome:headless e2e/**/__e2e__/*",
"test": "jest --verbose --coverage",
"test:watch": "jest --verbose --watch --coverage",
"test:ci": "jest --verbose --runInBand",
"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 <[email protected]>",
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "yarn format:fix:staged && yarn lint:check",
"pre-push": "yarn audit --level MODERATE && yarn test && yarn e2e",
"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",
"jest": "^26.6.3",
"microbundle": "^0.13.0",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"springtype": "^3.1.2",
"testcafe": "^1.10.1",
"ts-jest": "^26.5.0",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"dependencies": {
"springtype-types": "^3.2.9"
}
}