This repository has been archived by the owner on Nov 30, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
66 lines (66 loc) · 1.88 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
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
{
"name": "node-xero",
"version": "1.0.0",
"description": "node wrapper for Xero",
"main": "lib/index.js",
"scripts": {
"build": "babel --ignore *.spec.js -d lib src",
"clean": "rimraf .eslintcache {lib,build}/**/*.{js,log}",
"dedupe": "npm dedupe",
"lint": "eslint --cache src test",
"prebuild": "npm-run-all --sequential lint test clean",
"prepublish": "npm-run-all --sequential prune dedupe build",
"prune": "npm prune",
"shrink": "npm-run-all --sequential tidy && npm shrinkwrap",
"test": "babel-tap -Rspec src/**/*.spec.js",
"test:watch": "nodemon -w src --exec babel-tap -Rspec src/**/*.spec.js",
"tidy": "npm-run-all --sequential prune dedupe"
},
"repository": {
"type": "git",
"url": "https://github.com/moimikey/node-xero.git"
},
"keywords": [
"xero",
"accounting"
],
"author": "Michael Scott Hertzberg <mshertzberg@gmail.com> (http://hertzber.gs/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/moimikey/node-xero/issues"
},
"homepage": "https://github.com/moimikey/node-xero",
"browser": {
"fs": false
},
"peerDependencies": {},
"devDependencies": {
"babel-cli": "6.24.0",
"babel-core": "6.24.1",
"babel-eslint": "7.2.3",
"babel-plugin-transform-runtime": "6.23.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-stage-0": "6.22.0",
"babel-tap": "5.0.0",
"eslint": "3.19.0",
"eslint-plugin-babel": "4.1.0",
"nodemon": "1.11.0",
"npm-run-all": "4.0.2",
"rimraf": "2.6.1",
"tap": "10.3.2",
"typeov": "1.2.4"
},
"dependencies": {
"any-promise": "1.3.0",
"assert": "1.4.1",
"babel-runtime": "6.23.0",
"bluebird": "3.5.0",
"hasdom": "0.0.4",
"isomorphic-fetch": "2.2.1",
"lodash": "4.17.4",
"lru-memoize": "1.0.2",
"mashape-oauth": "0.1.71",
"read-glob-promise": "2.0.0",
"url": "0.11.0"
}
}