-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.79 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
{
"name": "@al/iris",
"version": "0.1.0",
"license": "MIT",
"description": "A client for interacting with the Alert Logic Iris Public API",
"author": {
"name": "Barry Skidmore",
"email": "[email protected]"
},
"keywords": [
"Alert Logic",
"Client",
"Service"
],
"maintainers": [
{
"name": "Barry Skidmore",
"email": "[email protected]"
},
{
"name": "Alert Logic NPM Team",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/alertlogic/iris-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 && npm run test && tsc",
"lint": "tslint -p tsconfig.json",
"clean": "rm -rf dist",
"prepublishOnly": "npm run build",
"interactive": "npm run build && node -i -e \"const IRISClient = require('./dist/commonjs/index.js').IRISClient;\""
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.6",
"@types/sinon": "^7.0.11",
"chai": "^4.2.0",
"karma": "^4.0.1",
"karma-chrome-launcher": "^2.2.0",
"karma-cli": "^2.0.0",
"karma-mocha": "^1.3.0",
"karma-typescript": "^4.0.0",
"mocha": "^6.1.3",
"peer-deps-externals-webpack-plugin": "^1.0.4",
"sinon": "^7.3.1",
"tslint": "^5.12.1",
"tslint-config-airbnb": "^5.11.1",
"typescript": "^3.2.4",
"webpack": "^4.29.0",
"webpack-cli": "^3.2.1"
},
"peerDependencies": {
"@al/client": "^0.13.0"
},
"files": [
"dist"
]
}