-
-
Notifications
You must be signed in to change notification settings - Fork 61
/
Copy pathpackage.json
40 lines (40 loc) · 1.23 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
{
"name": "odata-query",
"description": "OData v4 query builder that uses a simple object-based syntax similar to MongoDB and js-data",
"version": "7.0.9",
"author": "Sean Lynch <[email protected]>",
"license": "MIT",
"repository": "techniq/odata-query",
"main": "dist/commonjs/index.js",
"module": "dist/esm/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"dependencies": {
"tslib": "^2.4.0"
},
"devDependencies": {
"@changesets/cli": "2.27.10",
"@svitejs/changesets-changelog-github-compact": "^1.2.0",
"@types/jest": "^28.1.6",
"browserify": "^17.0.0",
"jest": "^28.1.3",
"rimraf": "^3.0.2",
"ts-jest": "^28.0.7",
"tsify": "^5.0.4",
"typescript": "^4.7.4"
},
"scripts": {
"prebuild": "rimraf dist",
"prepare": "npm run build",
"build": "tsc -p tsconfig.cjs.json & tsc -p tsconfig.esm.json & tsc -p tsconfig.dts.json & browserify -e src/index-browser.ts -p [ tsify ] -o dist/browser/index.js",
"test": "jest",
"test-watch": "jest --watchAll",
"preversion": "npm run build",
"prepublishOnly": "npm run build",
"changeset": "changeset",
"changeset:version": "changeset version",
"changeset:release": "changeset publish"
}
}