-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.06 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.06 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
{
"name": "prolly",
"version": "0.5.4",
"description": "A minimalist utility library for ES6 Native Promises",
"main": "index.js",
"scripts": {
"test": "npm run mocha && npm run lint",
"ci-test": "npm run coverage && npm run lint",
"coverage": "npx nyc npm run test",
"mocha": "mocha -R spec ./test",
"lint": "./node_modules/eslint/bin/eslint.js ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/growombud/prolly.git"
},
"keywords": [
"promise",
"es6",
"native",
"utility",
"sequence",
"series",
"minimalist",
"small"
],
"author": "Jonathan Griggs <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/growombud/prolly/issues"
},
"readmeFilename": "README.md",
"homepage": "https://github.com/growombud/prolly#readme",
"devDependencies": {
"eslint": "^6.8.0",
"eslint-plugin-import": "2.19.1",
"eslint-plugin-mocha": "6.2.2",
"mocha": "^7.1.1",
"nyc": "^15.0.0",
"should": "13.2.3"
},
"engine": "node >= 4.0.0"
}