-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
53 lines (53 loc) · 1.47 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
{
"name": "coam-client",
"version": "0.5.3",
"description": "A thin client for COAM service",
"main": "./lib/index.js",
"files": [
"lib",
"index.d.ts"
],
"typings": "./index.d.ts",
"scripts": {
"test": "node ./node_modules/mocha/bin/mocha --require @babel/polyfill --require @babel/register tests/",
"code-check": "eslint --ext .js --ext .jsx src",
"cover": "node ./node_modules/nyc/bin/nyc.js ./node_modules/mocha/bin/mocha --require @babel/polyfill --require @babel/register tests/",
"build": "babel src -d lib --copy-files"
},
"author": "[email protected]",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Cimpress/coam-client.git"
},
"bugs": {
"url": "https://github.com/Cimpress/coam-client/issues"
},
"homepage": "https://github.com/Cimpress/coam-client#readme",
"keywords": [
"cimpress",
"coam"
],
"devDependencies": {
"@babel/cli": "^7.17.3",
"@babel/core": "^7.17.5",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.16.11",
"@babel/register": "^7.17.0",
"chai": "^4.3.4",
"eslint": "^8.9.0",
"eslint-config-google": "^0.14.0",
"mocha": "^9.2.0",
"nock": "^12.0.3",
"nyc": "^15.1.0",
"rewire": "^6.0.0",
"sinon": "^13.0.1"
},
"dependencies": {
"@babel/runtime": "^7.10.2",
"axios": "^0.26.0",
"axios-retry": "^3.2.4",
"pope": "^2.0.2"
}
}