-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.08 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
{
"name": "async-coalesce",
"description": "Null coalescing functions that evaluate value types, as well as functions. Useful for cascading configurations.",
"version": "1.0.3",
"contributors": [
"Marqit8 <[email protected]>"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/marqit8/async-coalesce"
},
"keywords": [
"coalesce",
"null",
"save",
"async"
],
"engines": {
"node": ">= 6.0.0"
},
"types": "dist/index.d.ts",
"main": "dist/index.js",
"scripts": {
"bump": "npm --no-git-tag-version version patch",
"clean": "rimraf dist",
"build": "tsc",
"npmpublish": "npm publish --access public",
"deploy": "run-s clean build bump npmpublish clean"
},
"files": [
"dist/",
"Readme.md",
"LICENSE",
".travis.yml"
],
"devDependencies": {
"@types/assert": "^1.4.2",
"@types/mocha": "^5.2.6",
"@types/node": "^11.11.4",
"mocha": "^6.0.2",
"npm-run-all": "^4.1.5",
"rimraf": "^2.6.3",
"ts-node": "^8.0.3",
"typescript": "^3.3.3333"
}
}