-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (90 loc) · 2.3 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (90 loc) · 2.3 KB
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
92
{
"name": "fexpr.js",
"version": "0.3.0",
"description": "Filter expression parser(like SQL WHERE) for JavaScript. Port of fexpr in Go",
"main": "dist/fexpr.js",
"browser": "dist/fexpr.min.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"source": "src/index.ts",
"type": "module",
"sideEffects": false,
"scripts": {
"build": "rimraf dist ; vite build",
"test": "jest --coverage",
"dev": "NODE_ENV=development vite build --watch",
"serve-docs": "ws -d docs -p 8080",
"docs": "rimraf docs ; npx typedoc ./src/index.ts",
"prepare": "npm run build && npm run docs",
"prepublishOnly": "npm run test",
"check": "tsc -p tsconfig.json --noEmit",
"new:pack": "npm run prepare && clean-package && npm pack && clean-package restore",
"new:publish": "git diff --exit-code --name-only HEAD * && npm run test && npm run prepare && clean-package && npm publish && clean-package restore && git tag v$npm_package_version"
},
"files": [
"dist",
"src",
"docs",
"tsconfig.json"
],
"repository": {
"type": "git",
"url": "git://github.com/repalash/fexpr.js.git"
},
"keywords": [
"typescript",
"util",
"browser",
"esm",
"template",
"javascript",
"rollup",
"starter",
"library",
"npm",
"package",
"module"
],
"author": "repalash <palash@shaders.app>",
"license": "MIT",
"bugs": {
"url": "https://github.com/repalash/fexpr.js/issues"
},
"homepage": "https://github.com/repalash/fexpr.js#readme",
"devDependencies": {
"@rollup/plugin-json": "^6.1.0",
"@types/jest": "^29.5.14",
"clean-package": "^2.2.0",
"jest": "^29.7.0",
"local-web-server": "^5.4.0",
"rimraf": "^6.0.1",
"rollup-plugin-license": "^3.6.0",
"ts-jest": "^29.2.5",
"tslib": "^2.8.1",
"vite-plugin-dts": "^4.5.3",
"typescript": "^5.8.2",
"vite": "^6.0.5",
"typedoc": "^0.28.1",
"@rollup/plugin-replace": "^6.0.2"
},
"optionalDependencies": {
"win-node-env": "^0.6.1"
},
"browserslist": [
"defaults"
],
"clean-package": {
"remove": [
"clean-package",
"scripts",
"devDependencies",
"optionalDependencies",
"//"
],
"replace": {
}
},
"//": {
"comment": "This is a comment, it will be removed by clean-package"
}
}