This repository was archived by the owner on Feb 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 3.19 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 3.19 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "yesno-http",
"version": "0.0.7",
"description": "Easy HTTP testing",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"bin": {
"yesno": "dist/scripts/cli.js"
},
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"preversion": "npm run clean && npm run lint && npm run prettier && npm run tests",
"version": "npm run compile && npm run docs",
"clean": "rimraf dist",
"compile": "tsc",
"watch": "npm run compile -- -w",
"test": "npm run lint && npm run coverage",
"codecov": "nyc report --reporter=text-lcov -- mocha --timeout 2000 \"test/unit/**/*.spec.ts\" > coverage/coverage.lcov && codecov -t 5b8d8ce1-89c5-47c7-94e9-84f6d78afab3",
"coverage": "nyc -- mocha --timeout 2000 \"test/unit/**/*.spec.ts\"",
"tests": "npm run unit && npm run integration",
"lint": "tslint \"src/**/*.ts\" \"test/**/*.ts\"",
"prettier": "cat .gitignore .prettierignore > .gitprettierignore && prettier --write --config .prettierrc \"**/*.{ts,scss,json}\" --ignore-path .gitprettierignore",
"unit": "mocha --timeout 2000 \"test/unit/**/*.spec.ts\"",
"example-server": "./node_modules/.bin/ts-node ./examples/src/api-server.ts",
"example-tests": "mocha --timeout 2000 \"./examples/*.spec.ts\"",
"integration": "mocha --timeout 5000 \"test/integration/**/*.spec.ts\"",
"check": "npm run lint && npm run tests",
"docs": "node ./node_modules/typedoc/bin/typedoc --mdHideSources --readme none --theme markdown --out ./docs ./src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/formidablelabs/yesno.git"
},
"author": "Ian Walker-Sperber",
"contributors": [
{
"email": "mscottx88@gmail.com",
"name": "Michael P. Scott"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/formidablelabs/yesno/issues"
},
"homepage": "https://github.com/formidablelabs/yesno#readme",
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/chai-as-promised": "^7.1.0",
"@types/express": "^4.16.0",
"@types/mocha": "^5.2.5",
"@types/mock-require": "^2.0.0",
"@types/node": "^10.11.4",
"@types/request-promise": "^4.1.42",
"@types/rimraf": "^2.0.2",
"@types/sinon": "^5.0.1",
"@types/sinon-chai": "^3.2.1",
"body-parser": "^1.18.3",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"codecov": "^3.1.0",
"express": "^4.16.3",
"mocha": "^5.2.0",
"mock-require": "^3.0.2",
"nyc": "^13.1.0",
"prettier": "^1.15.3",
"request": "^2.88.0",
"request-promise": "^4.2.2",
"rimraf": "^2.6.2",
"sinon": "^6.1.5",
"sinon-chai": "^3.2.0",
"source-map-support": "^0.5.8",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"typedoc": "^0.13.0",
"typedoc-plugin-markdown": "^1.1.19",
"typescript": "^3.0.1"
},
"dependencies": {
"@types/debug": "0.0.30",
"@types/fs-extra": "^5.0.4",
"@types/lodash": "^4.14.116",
"@types/uuid": "^3.4.4",
"@types/yargs": "^12.0.1",
"debug": "^4.0.1",
"fs-extra": "^7.0.1",
"io-ts": "^1.3.4",
"io-ts-reporters": "0.0.21",
"lodash": "^4.17.11",
"mitm": "^1.7.0",
"readable-stream": "^3.0.6",
"uuid": "^3.3.2",
"yargs": "^12.0.2"
}
}