-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.75 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
{
"name": "kaiku",
"version": "1.25.2",
"description": "Lightweight UI framework",
"license": "MIT",
"author": "Teemu Pääkkönen",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/oamaok/kaiku.git"
},
"main": "dist/index.js",
"unpkg": "dist/kaiku.min.js",
"files": [
"src/*",
"dist/*",
"jsx-runtime.d.ts",
"jsx-runtime.js"
],
"scripts": {
"test": "yarn build && yarn test:dev && yarn test:minified && yarn test:jsx:dev && yarn test:jsx:minified",
"test:minified": "cross-env KAIKU_VERSION=minified jest --coverage",
"test:dev": "cross-env KAIKU_VERSION=development jest --coverage",
"test:jsx:minified": "cross-env KAIKU_JSX_RUNTIME=true KAIKU_VERSION=minified jest --coverage",
"test:jsx:dev": "cross-env KAIKU_JSX_RUNTIME=true KAIKU_VERSION=development jest --coverage",
"typings": "tsc --project tsconfig.json",
"build": "rm -rf dist/ && node build.js",
"lint": "eslint src/*",
"prettier": "prettier --write .",
"prettier:check": "prettier --check .",
"prepublishOnly": "yarn prettier:check && yarn lint && yarn build && yarn test && yarn typings"
},
"devDependencies": {
"@babel/plugin-transform-async-to-generator": "^7.24.7",
"@babel/plugin-transform-react-jsx": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"@babel/preset-typescript": "^7.24.7",
"@types/jest": "^29.5.13",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"babel-plugin-transform-define": "^2.1.4",
"cross-env": "^7.0.3",
"esbuild": "^0.12.29",
"eslint": "^7.32.0",
"jest": "^27.5.1",
"prettier": "^2.8.8",
"regenerator-runtime": "^0.13.11",
"terser": "^5.33.0",
"typescript": "^4.9.5"
}
}