-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.13 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
{
"name": "dbc-node-basesoap-client",
"version": "1.1.3",
"description": "Basic soap client",
"main": "index.js",
"scripts": {
"test": "mocha --compilers js:babel/register src/__tests__ -R mocha-jenkins-reporter",
"test:junit": "npm run test",
"lint": "eslint ./src",
"lint:checkstyle": "eslint ./src -o report.xml -f checkstyle",
"build": "npm run cleardest && babel ./src -d dist",
"cleardest": "rm -rf ./dist",
"watch": "npm run cleardest && babel ./src --watch -d dist"
},
"repository": {
"type": "git",
"url": "https://github.com/DBCDK/dbc-node-basesoap-client"
},
"keywords": [
"dbc"
],
"author": "dbcdk",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/DBCDK/dbc-node-basesoap-client/issues"
},
"homepage": "https://github.com/DBCDK/dbc-node-basesoap-client#readme",
"devDependencies": {
"babel": "^5.4.7",
"babel-core": "^5.4.7",
"babel-eslint": "4.1.7",
"babel-loader": "^5.1.3",
"chai": "^2.3.0",
"eslint": "^1.0.0",
"mocha": "^2.2.4",
"mocha-jenkins-reporter": "^0.1.9"
},
"dependencies": {
"soap": "^0.8.0"
}
}