-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.64 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.64 KB
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
{
"name": "helpful-merge",
"version": "0.2.0",
"description": "A highly-configurable merge implementation with intelligent error handling for validating consumer-provided input against configuration interfaces.",
"author": "KunkaLabs Limited",
"private": false,
"license": "Apache-2.0",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"browser": "./dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/patrickkunka/helpful-merge/"
},
"scripts": {
"test:unit": "mocha -r ts-node/register ./test/unit.ts",
"test": "npm run test:unit",
"lint": "tslint -c tslint.json './src/**/*.ts'",
"watch": "tsc --watch",
"build": "tsc",
"prepublishOnly": "npm run test && npm run build",
"cover": "nyc mocha ./test/unit.ts",
"coveralls": "npm run cover -- --report lcovonly && cat ./coverage/lcov.info | coveralls"
},
"nyc": {
"require": [
"ts-node/register",
"source-map-support/register"
],
"reporter": [
"lcov",
"text"
],
"extension": [
".ts"
],
"exclude": [
"**/*.d.ts",
"**/**.test.ts",
"dist",
"coverage",
"src/Interfaces"
],
"all": true
},
"devDependencies": {
"@types/chai": "^4.0.5",
"@types/mocha": "^2.2.44",
"@types/node": "^8.0.53",
"chai": "^3.5.0",
"chai-shallow-deep-equal": "^1.4.0",
"coveralls": "^3.0.1",
"istanbul": "^0.4.5",
"jsdom": "^11.11.0",
"jsdom-global": "^3.0.2",
"mocha": "^3.0.2",
"nyc": "^11.3.0",
"source-map-support": "^0.5.0",
"ts-node": "^3.3.0",
"tslint": "^5.8.0",
"typescript": "^2.6.1"
}
}