-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.05 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
{
"name": "rejections",
"version": "1.1.0",
"description": "Promise rejections helpers",
"main": "./lib/index.js",
"scripts": {
"test": "jest",
"prepublish": "npm run clean && npm run build",
"build": "cross-env BABEL_ENV=production babel src --out-dir lib",
"clean": "rimraf lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AlternativaPlatform/rejections.git"
},
"bugs": {
"url": "https://github.com/AlternativaPlatform/rejections/issues"
},
"homepage": "https://github.com/AlternativaPlatform/rejections",
"keywords": [
"promise",
"rejection",
"reject",
"serialize",
"deserialize"
],
"author": "Fedor Kulikov",
"license": "Apache-2.0",
"files": [
"lib",
"src"
],
"devDependencies": {
"jest": "^19.0.2",
"babel-cli": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015": "^6.24.0",
"cross-env": "^4.0.0",
"rimraf": "^2.6.1"
},
"dependencies": {
"invariant": "^2.2.2",
"lodash": "^4.17.4"
}
}