generated from oracle/template-repo
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 1.98 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"//": [
"Copyright © 2022, 2023, Oracle and/or its affiliates.",
"Licensed under the Universal Permissive License (UPL), Version 1.0 as shown at https://oss.oracle.com/licenses/upl/"
],
"name": "@ofs-users/proxy",
"type": "module",
"version": "1.11.0",
"description": "A Javascript proxy to access Oracle Field Service via REST API",
"main": "dist/ofs.es.js",
"module": "dist/ofs.es.js",
"types": "dist/OFS.d.ts",
"repository": {
"url": "git+https://github.com/oracle-samples/ofs-proxy-js.git"
},
"scripts": {
"build": "tsc",
"start": "ts-node src/index.ts",
"test": "jest",
"dist": "rollup --config rollup.config.mjs",
"prepare": "rollup --config rollup.config.mjs"
},
"keywords": [
"ofsc",
"ofs",
"oracle",
"field",
"service",
"cloud",
"field service"
],
"author": {
"name": "Borja Toron-Antons",
"email": "[email protected]"
},
"contributors": [
{
"name": "Miguel Gall",
"email": "[email protected]"
}
],
"license": "UPL-1.0",
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"devDependencies": {
"@babel/preset-typescript": "^7.23.3",
"@faker-js/faker": "^8.3.1",
"@jest/globals": "^29.3.1",
"@rollup/plugin-terser": "^0.2.1",
"@rollup/plugin-typescript": "^10.0.1",
"@types/jest": "^29.2.4",
"@types/node": "^18.11.18",
"husky": "^8.0.2",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"prettier": "^2.8.1",
"pretty-quick": "^3.1.3",
"rollup-plugin-dts": "^5.3.0",
"ts-jest": "^29.0.3",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"dependencies": {
"@ofs-users/proxy": "^1.9.0",
"tslib": "^2.4.1"
}
}