-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
114 lines (114 loc) · 2.61 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "native-or-another",
"version": "5.0.1",
"description": "Guaranteed way for getting a Promise. Always native Promise if available, otherwise looks for common promise libraries and loads which is installed. Allows registering custom Promise implementation in node < 0.12 versions",
"repository": "tunnckoCore/native-or-another",
"author": "Charlike Mike Reagent <@tunnckoCore> (https://i.am.charlike.online)",
"precommit.silent": true,
"main": "index.js",
"license": "MIT",
"scripts": {
"lint": "standard index.js test.js --fix --verbose",
"test": "npm-run-all -s lint test:*",
"test:api": "nyc --reporter lcov node test.js",
"test:report": "nyc report",
"prerelease": "npm test",
"release": "standard-version --sign --no-verify",
"git": "npm-run-all -s git:*",
"git:add": "git add --all",
"git:cz": "git-cz",
"commit": "npm-run-all -s test git"
},
"dependencies": {
"extend-shallow": "^2.0.1",
"native-promise": "^1.0.1",
"semver": "^5.3.0",
"try-catch-callback": "^2.0.2"
},
"devDependencies": {
"commitizen": "~2.7.0",
"cross-spawn": "^5.1.0",
"cz-conventional-changelog": "1.1.5",
"mukla": "^0.4.9",
"npm-run-all": "~3.1.2",
"nyc": "^10.1.2",
"pre-commit": "^1.2.2",
"spawn-sync": "^1.0.15",
"standard": "^9.0.0",
"standard-version": "^4.0.0"
},
"files": [
"index.js",
"register.js"
],
"keywords": [
"any",
"any-promise",
"autoload",
"bluebird",
"common",
"common-promise",
"ecma",
"ecmascript",
"es2015",
"es6",
"es2017",
"load",
"load-promise",
"loading",
"native",
"native-promise",
"promise",
"promises",
"register",
"register-promise",
"registration",
"specification"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"verb": {
"run": true,
"toc": {
"render": true,
"method": "preWrite",
"maxdepth": 3
},
"layout": "empty",
"tasks": [
"readme"
],
"related": {
"list": [
"try-catch-callback",
"native-promise",
"redolent",
"clean-stacktrace",
"stacktrace-metadata",
"find-callsite"
],
"highlight": "always-done"
},
"reflinks": [
"always-done",
"async-done",
"base",
"charlike",
"commitizen",
"dezalgo",
"once",
"standard-version",
"verb",
"verb-generate-readme",
"any-promise",
"native-promise",
"try-catch-core"
],
"lint": {
"reflinks": true
}
}
}