-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
98 lines (98 loc) · 2.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "iland-sdk",
"version": "1.0.1",
"description": "SDK for the ilandcloud REST API",
"main": "build/iland.js",
"typings": "build/iland.d.ts",
"author": "[email protected]",
"license": "BSD",
"repository": " https://github.com/ilanddev/javascript-sdk",
"scripts": {
"prepare": "npm run build",
"info": "npm-scripts-info",
"lint": "tslint --project tsconfig.json",
"build": "npm run lint && rm -rf ./build && webpack --debug && webpack -p && rm -r ./build/build",
"test": "jest --coverage --maxWorkers 2",
"docs": "typedoc src/sdk --excludePrivate --exclude **/__*__/**/* --mode file --theme minimal --out build/docs",
"publish:docs": "npm run docs && cp -R .circleci build/docs && gh-pages -d build/docs"
},
"scripts-info": {
"info": "Display information about the scripts",
"build": "(Trash and re)build the library",
"lint": "Lint all typescript source files",
"test": "Run tests",
"docs": "Generate HTML API documentation and open it in a browser",
"publish:docs": "Genrate HTML TypeDoc and deploy to GitHub Pages"
},
"engines": {
"node": ">=6.2.2"
},
"devDependencies": {
"@types/jest": "20",
"@types/node": "7",
"@types/qs": "6",
"dts-bundle": "0",
"gh-pages": "1",
"glob": "7",
"jest": "23",
"ts-jest": "22",
"ts-loader": "3",
"tslint": "^5.12.0",
"tslint-config-standard": "^8.0.1",
"typedoc": "^0.15.0",
"typescript": "^3.9.6",
"webpack": "^3.1.11",
"yargs": "11"
},
"keywords": [
"iland",
"sdk",
"typescript"
],
"jest": {
"setupTestFrameworkScriptFile": "./test-setup.js",
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"\\.(ts)$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "/.*.test.+(unit).ts$",
"clearMocks": true,
"bail": false,
"testPathIgnorePatterns": [
"/build/",
"/node_modules/",
"test-setup.js"
],
"testURL": "http://localhost",
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.ts",
"!src/**/index.ts",
"!src/sdk/**/__json__/*.ts"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test-setup.js",
"/__test__/.*\\.js$",
"/build/.*\\.(ts|js)$",
"/src/sdk/logger.*"
],
"globals": {
"ts-jest": {
"tsConfig": {
"importHelpers": true
}
}
}
},
"dependencies": {
"axios": "0",
"keycloak-js": "9.0.0",
"qs": "6",
"rxjs": "6",
"tslib": "1"
}
}