forked from alertlogic/nepal-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.27 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
72
73
74
75
76
77
78
{
"name": "@al/core",
"version": "1.0.19",
"description": "Nepal Core",
"main": "./dist/index.cjs.js",
"types": "./dist/index.d.ts",
"module": "./dist/index.esm5.js",
"es2015": "./dist/index.esm2015.js",
"author": {
"name": "Alert Logic NPM Team",
"email": "[email protected]"
},
"maintainer": {
"name": "Alert Logic NPM Team",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/alertlogic/nepal-core"
},
"scripts": {
"test": "karma start",
"test-watch": "karma start --no-single-run --auto-watch",
"build-dev": "npm run clean && tsc && webpack --mode=development",
"build": "rollup -c rollup.config.ts",
"prebuild": "npm run clean && npm run lint && npm run test",
"lint": "tslint -p tsconfig.json",
"clean": "rm -rf dist",
"prepublishOnly": "npm run build",
"interactive": "npm run build && node -i -e \"const AIMSClient = require('./dist/index.cjs.js').AIMSClient;\"",
"compile-documentation": "api-extractor run && api-documenter markdown --input-folder 'temp' --output-folder 'docs'"
},
"license": "MIT",
"peerDependencies": {
"auth0-js": "^9.12.2",
"axios": "^0.19.2",
"base64-js": "^1.3.0"
},
"dependencies": {
"auth0-js": "^9.12.2",
"axios": "^0.19.2",
"base64-js": "^1.3.0"
},
"devDependencies": {
"@types/auth0-js": "^9.12.4",
"@types/chai": "^4.2.4",
"@types/karma": "^5.0.0",
"@types/mocha": "^7.0.2",
"@types/qs": "^6.5.1",
"@types/sinon": "^9.0.0",
"chai": "^4.2.0",
"copy-webpack-plugin": "^5.0.5",
"karma": "^5.0.1",
"karma-chrome-launcher": "^3.1.0",
"karma-cli": "^2.0.0",
"karma-mocha": "^1.3.0",
"karma-typescript": "^5.0.2",
"mocha": "~7.0.1",
"peer-deps-externals-webpack-plugin": "^1.0.4",
"rollup": "^2.6.1",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-terser": "^5.3.0",
"rollup-plugin-typescript2": "^0.27.0",
"sinon": "^9.0.2",
"ts-loader": "^6.2.2",
"tslint": "^5.12.1",
"tslint-config-airbnb": "^5.11.1",
"typescript": "~3.6.5",
"webpack": "^4.41.2",
"webpack-bundle-analyzer": "^3.6.0",
"webpack-cli": "^3.2.1",
"webpack-node-externals": "^1.7.2",
"xhr-mock": "^2.4.1"
},
"files": [
"dist"
]
}