forked from paychex/bloodhound-promises
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.43 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
{
"name": "bloodhound-promises",
"version": "2.0.1",
"description": "Promises with extra features.",
"main": "index.js",
"keywords": [
"promise",
"promises-aplus"
],
"repository": {
"type": "git",
"url": "git://github.com/paychex/bloodhound-promises.git"
},
"bugs": {
"url": "https://github.com/paychex/bloodhound-promises/issues"
},
"author": "Paychex, Inc.",
"license": "Apache-2.0",
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/register": "^7.5.5",
"bluebird": "^3.5.5",
"docdash": "^1.1.1",
"expect": "^24.9.0",
"jsdoc": "^3.6.3",
"mocha": "^6.2.0",
"nyc": "^14.1.1",
"promises-aplus-tests": "^2.1.2",
"q": "^1.5.1",
"rollup": "^1.20.3",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-uglify": "^6.0.3",
"when": "^3.7.8"
},
"engines": {
"node": ">= 7.6.0"
},
"scripts": {
"test": "mocha --file test/setup.js --recursive",
"test:coverage": "nyc --reporter=lcov mocha --file test/setup.js --recursive",
"verify": "promises-aplus-tests verify",
"docs": "jsdoc -c jsdoc.json",
"build": "rollup -c"
},
"private": false,
"dependencies": {
"lodash": "^4.17.15"
}
}