forked from alertlogic/nepal-common
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.51 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
{
"name": "@al/common",
"version": "1.0.2",
"description": "A collection of lightweight utilities and common types shared across NEPAL libraries and applications based on them.",
"main": "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 && tsc",
"lint": "tslint -p tsconfig.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": {
"ajv": "^6.10.0"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.6",
"chai": "^4.2.0",
"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.3.2",
"tslint": "^5.16.0",
"tslint-config-airbnb": "^5.11.1",
"typescript": "^3.4.5",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.1",
"webpack-node-externals": "^1.7.2"
},
"files": [
"dist/**/*",
"locator.js",
"schema-validator.js",
"index.js"
]
}