-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
49 lines (49 loc) · 1.32 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
{
"name": "promise-tools",
"version": "0.0.0-semantic-release",
"description": "Tools for working with Promises",
"main": "dist/lib/index.js",
"module": "dist/module/index.js",
"types": "./index.d.ts",
"scripts": {
"test": "nyc mocha",
"build:lib": "babel -d dist/lib src",
"build:modules": "NODE_ENV=modules babel -d dist/module src",
"build": "npm run build:lib && npm run build:modules",
"prepare": "npm run build",
"clean": "rm -rf dist coverage",
"semantic-release": "semantic-release"
},
"keywords": [
"async",
"promise",
"q",
"bluebird",
"tools",
"callback",
"utility",
"module"
],
"repository": {
"type": "git",
"url": "git+https://github.com/benbria/node-promise-tools.git"
},
"author": "Jason Walton <dev@lucid.thedreaming.org> (https://github.com/jwalton)",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"@babel/register": "^7.0.0",
"@benbria/semantic-release-config": "^1.0.0",
"@types/node": "^14.0.10",
"babel-plugin-istanbul": "^6.0.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.0.2",
"mocha": "^8.0.1",
"nyc": "^15.0.0",
"semantic-release": "^17.0.3",
"typescript": "^3.1.3"
}
}