-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.59 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
56
{
"name": "io-ts-promise",
"version": "2.0.2",
"description": "io-ts for developers who like Promises",
"keywords": [
"io-ts",
"promise"
],
"files": [
"lib"
],
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"test": "npm run lint && npm run test:js",
"lint": "npm run lint:prettier && npm run lint:tslint && npm run lint:typescript",
"lint:prettier": "prettier --list-different 'src/*.ts' 'test/*.ts'",
"lint:tslint": "tslint-config-prettier-check ./tslint.json && tslint 'src/*.ts' 'test/*.ts'",
"lint:typescript": "tsc --noEmit",
"test:js": "mocha -r ts-node/register test/*.ts",
"build": "tsc",
"installPeerDependencies": "npm install --no-save [email protected] [email protected]",
"prepublish": "npm run installPeerDependencies && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/aeirola/io-ts-promise.git"
},
"author": "Axel Havukangas <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/aeirola/io-ts-promise/issues"
},
"homepage": "https://github.com/aeirola/io-ts-promise",
"dependencies": {
"deep-equal": "^1.1.0"
},
"peerDependencies": {
"fp-ts": "2.x",
"io-ts": "2.x"
},
"devDependencies": {
"@types/chai": "4.2.3",
"@types/chai-as-promised": "7.1.2",
"@types/deep-equal": "1.0.1",
"@types/mocha": "5.2.7",
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
"mocha": "6.2.1",
"prettier": "1.18.2",
"ts-node": "8.4.1",
"tslint": "5.20.0",
"tslint-config-prettier": "1.18.0",
"typescript": "3.6.3"
}
}