-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.23 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
{
"name": "@znck/promised",
"version": "1.0.4",
"description": "A utility to convert callbacks to promises.",
"main": "dist/promised.js",
"module": "dist/promised.mjs",
"types": "dist/index.d.ts",
"scripts": {
"build": "npm run :build",
"release": "npm run :release",
"test": "jest",
"coveralls": "coveralls",
"prepublishOnly": "npm run build",
"pre:release": "npm run test",
":release": "standard-version -a",
"post:release": "git push --follow-tags origin master && npm publish",
"pre:build": "rm -rf dist",
":build": "rollup -c"
},
"repository": "https://github.com/znck/promised",
"keywords": [
"promise",
"callback"
],
"author": "Rahul Kadyan <hi@znck.me> (https://znck.me)",
"license": "MIT",
"bugs": {
"url": "https://github.com/znck/promised/issues"
},
"homepage": "https://github.com/znck/promised#readme",
"engine": "node >= 6.0.0",
"files": [
"dist"
],
"devDependencies": {
"@types/jest": "^23.3.12",
"@types/node": "^10.12.18",
"coveralls": "^3.0.2",
"jest": "^23.6.0",
"rollup": "^1.1.0",
"rollup-plugin-typescript2": "^0.18.1",
"standard-version": "^4.4.0",
"ts-jest": "^23.10.5",
"typescript": "^3.2.2"
}
}