-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.67 KB
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
{
"name": "tm1js",
"version": "0.0.1",
"description": "A JavaScript library that wraps the TM1 REST API written in TypeScript",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"start": "tsc && node dist/index.js",
"dev": "ts-node-dev --respawn --transpile-only src/index.ts",
"clean": "del-cli ./dist/*",
"build": "npm run clean && tsc",
"test": "jest --watchAll --no-cache",
"docs": "typedoc --out docs src/index.ts",
"prepare": "tsc",
"lint": "eslint . --ext .ts --fix --fix-type layout"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testRegex": "test/.*\\.test\\.ts$",
"setupFilesAfterEnv": [
"./test/setup.ts"
]
},
"keywords": [
"TM1",
"OData",
"REST",
"TypeScript",
"API",
"Planning Analytics"
],
"author": "George Bryant",
"license": "MIT",
"dependencies": {
"axios": "^0.21.1",
"axios-cookiejar-support": "^1.0.0",
"https": "^1.0.0",
"tough-cookie": "^4.0.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/node": "^14.6.4",
"@types/tough-cookie": "^4.0.0",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"del-cli": "^3.0.1",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"jest": "^27.0.6",
"nodemon": "^2.0.4",
"ts-jest": "^27.0.3",
"ts-node-dev": "^1.1.8",
"typedoc": "^0.22.11",
"typescript": "^4.5.5"
}
}