forked from BarrySkidmore/cargo-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.86 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
67
68
69
70
71
{
"name": "@al/cargo",
"version": "1.2.9",
"license": "MIT",
"description": "A client for interacting with the Alert Logic Cargo Public API",
"author": {
"name": "Alert Logic UI Team",
"email": "[email protected]"
},
"keywords": [
"Alert Logic",
"Client",
"Service"
],
"maintainers": [
{
"name": "Alert Logic UI Team",
"email": "[email protected]"
},
{
"name": "Alert Logic NPM Team",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/alertlogic/cargo-client"
},
"main": "./dist/umd/index.js",
"module": "./dist/commonjs/index.js",
"types": "./dist/typings/index.d.ts",
"scripts": {
"test": "karma start",
"test-watch": "karma start --no-single-run --auto-watch",
"build-dev": "npm run clean && tsc && webpack --mode=development",
"build": "webpack",
"prebuild": "npm run clean && npm run lint && tsc",
"lint": "tslint -p tsconfig.json",
"clean": "rm -rf dist",
"prepublishOnly": "npm run build",
"interactive": "npm run build && node -i -e \"const CargoClient = require('./dist/commonjs/index.js').CargoClient;\""
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.6",
"@types/node": "^13.5.0",
"@types/sinon": "^7.0.11",
"chai": "^4.2.0",
"karma": "^4.0.1",
"karma-chrome-launcher": "^3.1.0",
"karma-cli": "^2.0.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-typescript": "^4.1.1",
"mocha": "^6.1.3",
"sinon": "^7.3.1",
"tslint": "^6.0.0",
"tslint-config-airbnb": "^5.11.2",
"typescript": "^3.7.5",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"@al/client": "^1.1.13",
"@al/common": "^1.1.23"
},
"files": [
"dist"
]
}