This repository was archived by the owner on Apr 17, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
55 lines (55 loc) · 1.66 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/common",
"version": "1.2.18",
"description": "A collection of lightweight utilities and common types shared across NEPAL libraries and applications based on them.",
"main": "./dist/umd/index.js",
"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",
"compile-documentation": "api-extractor run && api-documenter markdown --input-folder 'temp' --output-folder 'docs'",
"lint": "tslint -p tsconfig.json -c config/tslint.json",
"clean": "rm -rf dist",
"prepublishOnly": "npm run build"
},
"author": {
"name": "Kevin Nielsen",
"email": "[email protected]"
},
"maintainer": {
"name": "Alert Logic NPM Team",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/alertlogic/nepal-common"
},
"types": "./dist/typings/index.d.ts",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@types/chai": "^4.2.3",
"@types/karma": "^3.0.3",
"@types/mocha": "^5.2.6",
"chai": "^4.2.0",
"copy-webpack-plugin": "^5.0.5",
"karma": "^4.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-cli": "^2.0.0",
"karma-mocha": "^1.3.0",
"karma-typescript": "^4.0.0",
"mocha": "^6.1.4",
"sinon": "^7.5.0",
"tslint": "^5.20.0",
"tslint-config-airbnb": "^5.11.2",
"typescript": "^3.6.3",
"webpack": "^4.41.0",
"webpack-cli": "^3.3.9",
"webpack-node-externals": "^1.7.2"
},
"files": [
"dist"
]
}