-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.53 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
{
"name": "dimescheduler",
"description": "The Dime.Scheduler SDK",
"version": "0.5.0",
"main": "./dist/cjs/index.js",
"types": "./dist/types/index.d.ts",
"module": "./dist/index.js",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"require": "./dist/cjs/index.js",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./models": {
"types": "./dist/types/models/index.d.ts",
"require": "./dist/cjs/models/index.js",
"import": "./dist/models/index.js",
"default": "./dist/models/index.js"
}
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"repository": "https://github.com/dime-scheduler/sdk-js",
"author": "Hendrik Bulens",
"license": "MIT",
"keywords": [
"scheduling",
"planning",
"business-central",
"dynamics-365",
"power-apps"
],
"scripts": {
"build": "tsc --p tsconfig.cjs.json && tsc --p tsconfig.esm.json && tsc --p tsconfig.types.json && tsc-alias",
"clean": "rimraf dist",
"pub": "yarn clean && yarn build && yarn publish",
"test": "tsc --p ./test/tsconfig.json && ts-mocha -p test/tsconfig.json test/**/*.ts --timeout 10000"
},
"dependencies": {
"axios": "^1.6.8",
"reflect-metadata": "^0.2.2"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.6",
"@types/mocha": "^10.0.6",
"@types/node": "^20.12.7",
"mocha": "^10.4.0",
"rimraf": "^5.0.5",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.2",
"tsc-alias": "1.8.8",
"typescript": "^5.4.5"
}
}