-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
49 lines (49 loc) · 1.01 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
{
"name": "P8Client",
"version": "0.2.0",
"authors": [
"V. Bermudez <vbermudez@xi-tek.com>"
],
"description": "Simple and thin IBM FileNet P8 Client for NodeJS",
"keywords": [
"simple",
"thin",
"ibm",
"p8",
"filenet",
"client"
],
"license": "(MIT OR Apache-2.0)",
"homepage": "http://www.xi-tek.com",
"private": true,
"readmeFilename": "README.md",
"engines": {
"node": ">=10.16.0"
},
"main": "./src/index.ts",
"directories": {
"src": "./src",
"dist": "./dist"
},
"scripts": {
"build": "tsc",
"test": "jest --forceExit --detectOpenHandles --verbose"
},
"repository": {
"type": "git",
"url": "git://github.com/vbermudez/p8client.git"
},
"dependencies": {
"soap": "^0.28.0"
},
"devDependencies": {
"@types/async": "^3.0.0",
"@types/bluebird": "^3.5.27",
"@types/jest": "^24.0.15",
"@types/node": "^12.6.6",
"dotenv": "^8.0.0",
"jest": "^24.8.0",
"ts-jest": "^24.0.2",
"typescript": "^3.5.3"
}
}