This repository was archived by the owner on Oct 24, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.28 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.28 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
{
"name": "moneybird",
"description": "Node API promise-wrapper for Moneybird",
"version": "v1.0.2",
"main": "dist",
"scripts": {
"build": "NODE_ENV=production babel src -s -D -d dist",
"start": "babel-node src/index.js",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"lint": "eslint src/.",
"prepublish": "npm run build",
"pretest": "npm run lint",
"test": "nyc babel-tape-runner $(find test -name \\*.test.js) | tap-spec"
},
"repository": {
"type": "git",
"url": "https://github.com/renedx/node-moneybird.git"
},
"author": "René van Sweeden",
"license": "MIT",
"es6": true,
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-eslint": "^7.1.1",
"babel-plugin-istanbul": "^4.1.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-stage-0": "^6.22.0",
"babel-tape-runner": "^2.0.1",
"coveralls": "^2.12.0",
"eslint": "^3.16.1",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.0",
"nyc": "^10.1.2",
"sinon": "^1.17.7",
"tap-spec": "^4.1.1",
"tape": "^4.6.3",
"tape-catch": "^1.0.6",
"tape-nock": "^1.6.0"
},
"dependencies": {}
}