This repository has been archived by the owner on Jun 24, 2021. It is now read-only.
forked from janhommes/o.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.47 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
49
50
{
"name": "odata-node",
"description": "This is a fork of o.js which runs on node. o.js is a isomorphic Odata Javascript library to simplify the request of data. The main goal is to build a standalone, lightweight and easy to understand Odata lib.",
"version": "1.1.0",
"main": "dist/cjs/o.js",
"browser": "dist/umd/o.js",
"module": "dist/es2015/o.js",
"types": "dist/types/o.d.ts",
"engines": {
"node": ">=10.14.2"
},
"dependencies": {
"cross-fetch": "^3.0.6",
"tslib": "^1.9.3",
"universal-url": "2.0.0"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@types/jest": "^26.0.15",
"@types/node": "^10.12.24",
"jest": "^26.6.1",
"rollup": "^0.68.2",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-typescript2": "^0.24.2",
"rollup-plugin-uglify-es": "0.0.1",
"ts-jest": "^26.1.0",
"tslint": "^5.12.1",
"typescript": "^3.9.7",
"url-polyfill": "^1.1.11",
"whatwg-fetch": "^3.4.1"
},
"scripts": {
"build": "rollup --config",
"test": "jest",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git://github.com/thomasmarr/o.js.git"
},
"author": "Jan Hommes",
"contributors": [
"Matteo Antony Mistretta <[email protected]> (http://www.ingloriouscoderz.it)",
"Thomas Marr <[email protected]>"
],
"license": "MIT"
}