-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
56 lines (56 loc) · 1.57 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
{
"$schema": "http://json.schemastore.org/package",
"name": "doctest-ts",
"version": "0.5.0",
"description": "doctest support for typescript",
"main": "src/main.ts",
"bin": {
"doctest-ts": "dist/src/main.js"
},
"scripts": {
"build": "tsc && chmod 755 dist/src/main.js",
"test": "ts-node src/main.ts --tape src/*ts test/*ts && ts-node node_modules/.bin/tape test/*.ts src/*doctest*.ts | tap-diff",
"doctest:watch": "ts-node src/main.ts --tape --watch {src,test}/*.ts | while read file; do echo tape $file; ts-node $file | tap-diff; done",
"prettier": "rm -v -f {src,test}/*doctest.ts && prettier --list-different --write src/*ts* test/*ts*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danr/doctest-ts.git"
},
"keywords": [
"doctest",
"typescript",
"testing"
],
"author": "Dan Rosén",
"license": "MIT",
"bugs": {
"url": "https://github.com/danr/doctest-ts/issues"
},
"homepage": "https://github.com/danr/doctest-ts#readme",
"dependencies": {
"chokidar": "^2.0.1",
"global": "^4.3.2",
"minimist": "^1.2.0",
"typescript": "^2.7.1"
},
"devDependencies": {
"@types/chokidar": "^1.7.5",
"@types/minimist": "^1.2.0",
"@types/node": "^9.4.6",
"@types/tape": "^4.2.31",
"faucet": "^0.0.1",
"prettier": "^1.11.0",
"tap-diff": "^0.1.1",
"tape": "^4.9.0",
"ts-node": "^5.0.0"
},
"prettier": {
"printWidth": 100,
"semi": false,
"singleQuote": true,
"trailingComma": "es5",
"jsxBracketSameLine": true,
"bracketSpacing": false
}
}