-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.77 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.77 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "xfe",
"version": "0.2.0",
"description": "XFE API Wrappers for Node.js",
"homepage": "https://github.com/ibm-xforce/xfe-node",
"bugs": {
"url": "https://github.com/ibm-xforce/xfe-node/issues"
},
"author": {
"name": "Cameron Will",
"email": "scwill@us.ibm.com",
"url": "https://cwill.us"
},
"dependencies": {
"babel-polyfill": "^6.5.0",
"lodash": "^4.3.0",
"node-uuid": "^1.4.7",
"request": "^2.69.0"
},
"license": "Apache-2.0",
"devDependencies": {
"babel-core": "^6.4.5",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-preset-es2015": "^6.5.0",
"babel-register": "^6.5.1",
"chai": "^3.5.0",
"chai-as-promised": "^5.2.0",
"gulp": "^3.6.2",
"gulp-babel": "^6.1.2",
"gulp-coveralls": "^0.1.4",
"gulp-documentation": "^2.2.0",
"gulp-istanbul": "^0.10.3",
"gulp-mocha": "^2.2.0",
"gulp-shell": "^0.4.2",
"gulp-tsc": "^0.10.1",
"gulp-tslint": "^4.3.1",
"gulp-typedoc": "^1.2.1",
"gulp-typescript": "^2.11.0",
"jsdoc-babel": "^0.1.0",
"mocha": "*",
"nock": "^7.0.2",
"run-sequence": "^1.1.1",
"tslint": "^3.3.0",
"typedoc": "^0.3.12",
"typedoc-markdown-theme": "0.0.3"
},
"typescript": {
"definition": "index.d.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ibm-xforce/xfe-node.git"
},
"main": "dist/app.js",
"scripts": {
"prepublish": "typings install && gulp build",
"main": "gulp build",
"test": "gulp buildtest",
"preversion": "gulp buildtest",
"version": "gulp buildtest && git add -A dist",
"postversion": "git push && git push --tags",
"deploy": "git-directory-deploy --directory doc --branch gh-pages"
},
"keywords": [
"xfe",
"xforce",
"exchange"
]
}