-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
56 lines (56 loc) · 1.82 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
{
"name": "myob",
"version": "1.0.4",
"main": "lib/index.js",
"repository": "git@github.com:ordermentum/myob-javascript-sdk.git",
"author": "John D'Agostino <john.dagostino@gmail.com>",
"license": "Apache-2.0",
"dependencies": {
"axios": "^0.27.0",
"babel-polyfill": "^6.23.0",
"babel-runtime": "^6.23.0",
"lodash.get": "^4.4.2",
"moment": "^2.17.1",
"null-logger": "^1.0.0",
"qs": "^6.3.1",
"simple-oauth2": "^4.2.0"
},
"files": [
"lib/*"
],
"scripts": {
"test": "NODE_ENV=test nyc npm run spec",
"spec": "./node_modules/.bin/_mocha -R spec ./test/test_helper.js --compilers js:babel-core/register --recursive test/**/*",
"lint": "./node_modules/.bin/eslint src test",
"build:coverage": "nyc check-coverage --statements 70 --branches 70 --functions 60 --lines 70",
"autotest": "./node_modules/.bin/_mocha --watch",
"build": "rm -rf lib && babel src --out-dir lib",
"prepublish": "yarn run build",
"reporter": "nyc --reporter=html yarn run test"
},
"devDependencies": {
"@babel/eslint-parser": "7.25.9",
"@types/simple-oauth2": "^5.0.7",
"babel-cli": "6.26.0",
"babel-core": "6.26.3",
"babel-istanbul": "0.12.2",
"babel-plugin-transform-async-to-generator": "6.24.1",
"babel-plugin-transform-flow-strip-types": "6.22.0",
"babel-plugin-transform-runtime": "6.23.0",
"babel-preset-env": "1.7.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-flow": "6.23.0",
"babel-preset-stage-1": "6.24.1",
"babel-register": "6.26.0",
"chai": "3.5.0",
"eslint": "4.19.1",
"eslint-config-airbnb": "18.2.1",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsx-a11y": "4.0.0",
"eslint-plugin-react": "6.10.3",
"flow-bin": "0.177.0",
"mocha": "3.5.3",
"nyc": "10.3.2",
"sinon": "2.4.1"
}
}