forked from parky128/environments-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.42 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
{
"name": "@al/environments",
"version": "0.4.0",
"license": "MIT",
"description": "A client for interacting with the Alert Logic Environments Public API.",
"author": {
"name": "Barry Skidmore",
"email": "[email protected]"
},
"keywords": [
"Alert Logic",
"Environments",
"Client"
],
"maintainers": [
{
"name": "Barry Skidmore",
"email": "[email protected]"
},
{
"name": "Alert Logic NPM Team",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/alertlogic/environments-client"
},
"main": "./dist/umd/index.js",
"module": "./dist/commonjs/index.js",
"types": "./dist/typings/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build-dev": "npm run clean && tsc && webpack --mode=development",
"build": "webpack",
"prebuild": "npm run clean && tsc",
"clean": "rm -rf dist",
"prepublishOnly": "npm run build",
"interactive": "node -i -e \"const EnvironmentsClient = require('./dist/commonjs/index.js').EnvironmentsClient;\""
},
"devDependencies": {
"peer-deps-externals-webpack-plugin": "^1.0.4",
"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.12.0"
},
"files": [
"dist"
]
}