-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 997 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
39
40
41
42
43
44
45
{
"name": "dssp-nodejs",
"version": "0.3.2",
"description": "DSSP library for Node.js",
"author": {
"name": "Frank Cornelis",
"email": "[email protected]"
},
"keywords": [
"dssp",
"dss"
],
"homepage": "https://www.e-contract.be",
"license": "LGPL-3.0",
"main": "./index.js",
"directories": {
"lib": "./lib"
},
"repository": {
"type": "git",
"url": "https://github.com/e-Contract/dssp-nodejs.git"
},
"dependencies": {
"soap": "0.25.0",
"pug": "2.0.3",
"js2xmlparser": "3.0.0",
"xml-crypto": "1.1.4",
"psha1": "0.1.1",
"xmldom": "0.1.27",
"moment": "2.24.0",
"ejs": "2.6.1",
"uuid": "3.3.2"
},
"devDependencies": {
"express": "4.16.4",
"express-session": "1.15.6",
"body-parser": "1.18.3",
"nodeunit": "0.11.3",
"ansi": "0.3.1"
},
"scripts": {
"start": "node example/example.js",
"test": "nodeunit test/pug-test.js test/js2xmlparser-test.js test/moment-test.js"
}
}