-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
38 lines (38 loc) · 979 Bytes
/
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
{
"name": "limsml-client",
"version": "0.5.2",
"description": "Client library for the LIMSML web service.",
"main": "./dist/index.js",
"scripts": {
"build": "tsc --project tsconfig.json",
"build-watch": "tsc --project tsconfig.json --watch",
"start": "node dist/demo"
},
"repository": {
"type": "git",
"url": "git+https://github.com/icooper/limsml-client.git"
},
"author": {
"name": "Ian Cooper",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/icooper/limsml-client/issues"
},
"homepage": "https://github.com/icooper/limsml-client#readme",
"devDependencies": {
"@types/base-64": "^0.1.3",
"@types/crypto-js": "^4.0.1",
"@types/ent": "^2.2.3",
"@types/node": "^14.14.14",
"typescript": "^4.1.3"
},
"dependencies": {
"base-64": "^1.0.0",
"crypto-js": "^4.0.0",
"easy-soap-request": "^4.1.1",
"ent": "^2.2.0",
"xml-js": "^1.6.11"
}
}