-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.09 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.09 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
70
71
{
"name": "ordermentum-sdk",
"version": "1.1.0",
"main": "lib/index.js",
"repository": "git@github.com:ordermentum/javascript-sdk.git",
"author": "John D'Agostino <john@ordermentum.com>",
"license": "MIT",
"dependencies": {
"axios": "0.30.3",
"null-logger": "^1.0.0",
"qs": "^6.9.0"
},
"files": [
"lib/*"
],
"scripts": {
"test": "cross-env NODE_ENV=test nyc npm run spec",
"spec": "mocha -R spec ./test/test_helper.js test/*.*",
"lint": "./node_modules/.bin/eslint 'src/**/*.{ts,js}'",
"typecheck": "tsc --noEmit",
"autotest": "./node_modules/.bin/_mocha --watch",
"clean": "rm -rf lib",
"build": "yarn clean && babel src --out-dir lib --extensions \".ts,.tsx\" && tsc ",
"prepublish": "yarn run build",
"reporter": "nyc --reporter=html yarn run test"
},
"devDependencies": {
"@babel/cli": "7.28.6",
"@babel/core": "7.29.0",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-proposal-object-rest-spread": "7.20.7",
"@babel/plugin-transform-async-to-generator": "7.28.6",
"@babel/polyfill": "7.12.1",
"@babel/preset-env": "7.29.0",
"@babel/preset-typescript": "7.28.5",
"@babel/register": "7.28.6",
"@types/qs": "6.14.0",
"@typescript-eslint/eslint-plugin": "2.34.0",
"@typescript-eslint/parser": "2.34.0",
"@babel/eslint-parser": "7.28.6",
"babel-plugin-istanbul": "5.2.0",
"caniuse-lite": "1.0.30001774",
"chai": "4.5.0",
"cross-env": "6.0.3",
"eslint": "6.8.0",
"eslint-config-airbnb": "18.2.1",
"eslint-config-prettier": "6.15.0",
"eslint-import-resolver-typescript": "2.7.1",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-mocha": "6.3.0",
"eslint-plugin-prettier": "3.4.1",
"eslint-plugin-react": "7.37.5",
"mocha": "7.2.0",
"nyc": "14.1.1",
"prettier": "1.19.1",
"sinon": "8.1.1",
"typescript": "3.9.10"
},
"nyc": {
"require": [
"@babel/register"
],
"reporter": [
"lcov",
"text"
],
"sourceMap": false,
"instrument": false
}
}