-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.22 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
{
"name": "fulcrum-query-sql",
"version": "1.1.12",
"description": "Fulcrum Query SQL Utilities",
"homepage": "http://github.com/fulcrumapp/fulcrum-query-sql",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"simpletest": "jest",
"prepublish": "yarn run clean && yarn run build",
"lint": "eslint src/* src/**/*",
"build": "tsc",
"clean": "rm -rf dist",
"typecheck": "tsc -b"
},
"author": "Fulcrum",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "git://github.com/fulcrumapp/fulcrum-query-sql.git"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"eslint": "^8.29.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"fulcrum-core": "^1.3.6",
"jest": "^29.2.2",
"ts-jest": "^29.0.3",
"typescript": "^5.2.2"
},
"dependencies": {
"array-move": "^1.0.0",
"lodash": "^4.16.2",
"moment": "^2.17.1",
"moment-timezone": "^0.5.11",
"@fulcrumapp/pg-query-deparser": "0.0.1"
},
"keywords": [
"fulcrum"
],
"peerDependencies": {
"fulcrum-core": "^1.3.6",
"moment": "^2.17.1",
"moment-timezone": "^0.5.11"
}
}