forked from techniq/odata-query
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 858 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 858 Bytes
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
{
"name": "odata-query",
"version": "6.2.1",
"author": "Sean Lynch <techniq35@gmail.com>",
"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": "^1.10.0"
},
"devDependencies": {
"@types/jest": "^24.0.15",
"browserify": "^16.5.1",
"jest": "^24.8.0",
"rimraf": "^2.6.3",
"ts-jest": "^24.0.2",
"tsify": "^4.0.2",
"typescript": "^3.5.2"
},
"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"
}
}