-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.1 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": "vouch-promise",
"version": "2.0.1",
"description": "A typescript promise library",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": {
"url": "git+ssh://[email protected]/chadian/vouch.git",
"type": "git"
},
"author": "Chad Carbert <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/chadian/vouch/issues"
},
"homepage": "https://github.com/chadian/vouch#readme",
"dependencies": {},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.6",
"@types/node": "^12.0.2",
"cz-conventional-changelog": "^1.2.0",
"mocha": "^3.1.2",
"promises-aplus-tests": "^2.1.2",
"release-it": "^12.2.2",
"ts-node": "^8.1.1",
"typescript": "^3.4.5"
},
"scripts": {
"test": "mocha --compilers ts:ts-node/register ./test.ts",
"build": "tsc",
"prepare": "npm run build",
"prepublishOnly": "npm run test",
"release": "release-it"
},
"keywords": [
"promise",
"vouch"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}