-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
45 lines (45 loc) · 1.29 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
{
"version": "1.4.2",
"_from": "op-client",
"author": {
"name": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/alexey2baranov/node-op-client"
},
"dependencies": {
"client-oauth2": "^4.3.3",
"cross-fetch": "^3.0.5",
"iso8601-duration": "^1.2.0",
"keypather": "^3.1.0",
"reflect-metadata": "^0.1.10"
},
"description": "Client library for OpenProject.org server. Works both in Node.js and browsers.",
"devDependencies": {
"@types/jest": "^26.0.9",
"@types/node": "^8.10.64",
"@zerollup/ts-transform-paths": "^1.7.18",
"dotenv": "^8.2.0",
"jest": "^26.4.0",
"ts-jest": "^26.2.0",
"ts-node": "^9.0.0",
"typescript": "^3.9.7"
},
"keywords": [
"openproject",
"client"
],
"license": "MIT",
"main": "dist/src/index.js",
"name": "op-client",
"scripts": {
"build": "tsc",
"master": "git checkout master && git merge development && git push && git checkout development",
"test": "npm run test:unit",
"test:unit": "jest --runInBand --testMatch=\"<rootDir>/test/entity/**/*.test.ts\"",
"server:up": "docker-compose up -d",
"server:down": "docker-compose down",
"test:integration": "jest --runInBand --testMatch=\"<rootDir>/test/entity/**/*.test.ts\""
}
}