-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
34 lines (34 loc) · 986 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
{
"name": "ndc-client",
"version": "0.1.0",
"description": "IATA NDC-compliant API wrapper",
"main": "index.js",
"scripts": {
"test": "node_modules/jshint/bin/jshint *.js lib/**/*.js && NODE_ENV=test node_modules/mocha/bin/mocha -R spec ./test/*.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iata-ndc/ndc-js-sdk.git"
},
"author": "Rilke Petrosky Ulloa <[email protected]>",
"contributors": [{
"name": "Jorge Díaz",
"email": "<[email protected]>"
}],
"license": "IATA",
"bugs": {
"url": "https://github.com/iata-ndc/ndc-js/issues"
},
"homepage": "https://github.com/iata-ndc/ndc-js#readme",
"dependencies": {
"easyxml": "^1.0.0",
"request": "^2.64.0",
"xml2js": "^0.4.12"
},
"devDependencies": {
"debug": "^2.2.0",
"jshint": "^2.8.0",
"mocha": "^2.3.3",
"should": "^7.1.0"
}
}