-
Notifications
You must be signed in to change notification settings - Fork 60
/
package.json
34 lines (34 loc) · 1008 Bytes
/
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
{
"name": "odata-query",
"description": "OData v4 query builder that uses a simple object-based syntax similar to MongoDB and js-data",
"version": "7.0.6",
"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": {
"@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",
"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"
}
}